Skip to content

Commit f9c2029

Browse files
committed
Initial landing page for Contextual Cognitive Tools
0 parents  commit f9c2029

3 files changed

Lines changed: 113 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
node_modules/

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Contextual Cognitive Tools (CCT)
2+
3+
Landing page for Contextual Cognitive Tools, hosted on GitHub Pages.
4+
5+
## Product Vision
6+
7+
CCT is a conversational LLM-powered tool that helps people build a structured **INFO.json** file for their site, industry, or business.
8+
9+
### How it works
10+
11+
1. **Guided conversation** — The LLM asks targeted questions about your business, site, or project
12+
2. **Structured output** — Answers are compiled into a standardized `INFO.json` file
13+
3. **Flexible delivery** — Users can:
14+
- **Host with us** — We provide a permalink to add to your site or profile
15+
- **Download** — Get the file and host it on your own site/server
16+
17+
### What INFO.json captures
18+
19+
A structured, machine-readable profile of a business or project — context that LLMs, search engines, and integrations can consume directly.
20+
21+
## Setup
22+
23+
- **Repo:** [HumanjavaEnterprises/cct.web.landingpage.src](https://github.com/HumanjavaEnterprises/cct.web.landingpage.src)
24+
- **Pages source:** `main` branch, `/docs` folder
25+
- **Custom domain:** TBD
26+
27+
## DNS Configuration
28+
29+
Point your domain to GitHub Pages:
30+
31+
**A records** (apex domain):
32+
```
33+
185.199.108.153
34+
185.199.109.153
35+
185.199.110.153
36+
185.199.111.153
37+
```
38+
39+
**CNAME** (www subdomain):
40+
```
41+
www → humanjavaenterprises.github.io
42+
```
43+
44+
Once DNS propagates, HTTPS is enforced automatically by GitHub Pages.

docs/index.html

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Contextual Cognitive Tools</title>
7+
<meta name="description" content="Contextual Cognitive Tools — Build your INFO.json through guided conversation.">
8+
<style>
9+
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
10+
11+
:root {
12+
--bg: #0f172a;
13+
--card: #1e293b;
14+
--text: #f8fafc;
15+
--muted: #94a3b8;
16+
--accent: #f472b6;
17+
}
18+
19+
body {
20+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
21+
background: var(--bg);
22+
color: var(--text);
23+
min-height: 100vh;
24+
display: flex;
25+
flex-direction: column;
26+
align-items: center;
27+
justify-content: center;
28+
padding: 2rem;
29+
}
30+
31+
.container {
32+
max-width: 640px;
33+
text-align: center;
34+
}
35+
36+
h1 {
37+
font-size: 3rem;
38+
font-weight: 700;
39+
letter-spacing: -0.02em;
40+
margin-bottom: 1rem;
41+
}
42+
43+
.accent { color: var(--accent); }
44+
45+
p {
46+
font-size: 1.25rem;
47+
color: var(--muted);
48+
line-height: 1.6;
49+
margin-bottom: 2rem;
50+
}
51+
52+
footer {
53+
position: fixed;
54+
bottom: 2rem;
55+
color: var(--muted);
56+
font-size: 0.875rem;
57+
}
58+
</style>
59+
</head>
60+
<body>
61+
<div class="container">
62+
<h1><span class="accent">Contextual Cognitive Tools</span></h1>
63+
<p>Coming soon.</p>
64+
</div>
65+
<footer>&copy; 2026 Contextual Cognitive Tools</footer>
66+
</body>
67+
</html>

0 commit comments

Comments
 (0)