Skip to content

Commit 4935c49

Browse files
committed
Add product landing page with SEO for GitHub Pages
- Add docs/site/index.html with full SEO meta tags, Open Graph, Twitter Cards, JSON-LD - Add docs/site/style.css shared dark-theme design system - Add docs/site/robots.txt - Add .github/workflows/deploy-pages.yml for auto-deploy
1 parent 46d1e83 commit 4935c49

4 files changed

Lines changed: 245 additions & 0 deletions

File tree

.github/workflows/deploy-pages.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Deploy Product Page
2+
on:
3+
push:
4+
branches: [master]
5+
paths: ['docs/site/**']
6+
workflow_dispatch:
7+
permissions:
8+
pages: write
9+
id-token: write
10+
concurrency:
11+
group: pages
12+
cancel-in-progress: false
13+
jobs:
14+
deploy:
15+
environment:
16+
name: github-pages
17+
url: ${{ steps.deployment.outputs.page_url }}
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: actions/configure-pages@v4
22+
- uses: actions/upload-pages-artifact@v3
23+
with:
24+
path: docs/site
25+
- id: deployment
26+
uses: actions/deploy-pages@v4

docs/site/index.html

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
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>eDB — Multi-Model Database | EmbeddedOS</title>
7+
<meta name="description" content="Unified multi-model database combining SQL + Document/NoSQL + Key-Value in one engine. SQLite-based, REST API, JWT auth, RBAC, AES-256 encryption, AI queries.">
8+
<meta name="keywords" content="database, sql, nosql, key-value, rest api, sqlite, embedded database, multi-model">
9+
<meta name="author" content="EmbeddedOS">
10+
<meta name="robots" content="index, follow">
11+
<link rel="canonical" href="https://embeddedos-org.github.io/eDB/">
12+
<meta property="og:type" content="website">
13+
<meta property="og:title" content="eDB — Multi-Model Database | EmbeddedOS">
14+
<meta property="og:description" content="Unified multi-model database combining SQL + Document/NoSQL + Key-Value in one engine. SQLite-based, REST API, JWT auth, RBAC, AES-256 encryption, AI queries.">
15+
<meta property="og:url" content="https://embeddedos-org.github.io/eDB/">
16+
<meta property="og:site_name" content="EmbeddedOS">
17+
<meta name="twitter:card" content="summary_large_image">
18+
<meta name="twitter:title" content="eDB — Multi-Model Database | EmbeddedOS">
19+
<meta name="twitter:description" content="Unified multi-model database combining SQL + Document/NoSQL + Key-Value in one engine. SQLite-based, REST API, JWT auth, RBAC, AES-256 encryption, AI queries.">
20+
<link rel="stylesheet" href="style.css">
21+
<script type="application/ld+json">
22+
{
23+
"@context": "https://schema.org",
24+
"@type": "SoftwareApplication",
25+
"name": "eDB",
26+
"description": "Unified multi-model database combining SQL + Document/NoSQL + Key-Value in one engine. SQLite-based, REST API, JWT auth, RBAC, AES-256 encryption, AI queries.",
27+
"url": "https://embeddedos-org.github.io/eDB/",
28+
"applicationCategory": "DeveloperApplication",
29+
"operatingSystem": "EmbeddedOS",
30+
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
31+
"author": { "@type": "Organization", "name": "EmbeddedOS", "url": "https://embeddedos-org.github.io/" }
32+
}
33+
</script>
34+
</head>
35+
<body>
36+
<nav class="navbar">
37+
<div class="nav-inner">
38+
<a href="https://embeddedos-org.github.io/" class="logo">
39+
<div class="logo-icon">eOS</div>
40+
EmbeddedOS
41+
</a>
42+
<div class="nav-links">
43+
<a href="https://embeddedos-org.github.io/">Home</a>
44+
<a href="#features" class="active">Docs</a>
45+
<a href="https://github.com/embeddedos-org/eDB" target="_blank">GitHub</a>
46+
</div>
47+
</div>
48+
</nav>
49+
50+
<section class="hero">
51+
<div class="hero-content">
52+
<div class="hero-badges">
53+
<span class="badge badge-green">Multi-Model</span>
54+
<span class="badge badge-blue">SQL + NoSQL</span>
55+
<span class="badge badge-cyan">REST API</span>
56+
</div>
57+
<h1 style="background: linear-gradient(135deg, #3fb950, #6fdd8b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;">eDB</h1>
58+
<p class="subtitle">Unified multi-model database combining SQL + Document/NoSQL + Key-Value in one engine. SQLite-based, REST API, JWT auth, RBAC, AES-256 encryption, AI queries.</p>
59+
<div class="hero-buttons">
60+
<a href="https://github.com/embeddedos-org/eDB" class="btn btn-primary" target="_blank">Star on GitHub</a>
61+
<a href="#quickstart" class="btn btn-outline">Quick Start</a>
62+
</div>
63+
</div>
64+
</section>
65+
66+
<section class="section" id="features">
67+
<h2 class="section-title">Features</h2>
68+
<p class="section-subtitle">One database engine — SQL, documents, and key-value — with enterprise security</p>
69+
<div class="feature-grid">
70+
<div class="feature-card">
71+
<h3>SQL + Document + Key-Value</h3>
72+
<p>Query relational tables with SQL, store flexible JSON documents, and use fast key-value lookups — all in one engine.</p>
73+
</div>
74+
<div class="feature-card">
75+
<h3>Zero-Dependency SQLite Foundation</h3>
76+
<p>Built on SQLite for maximum portability — no external database server required, runs anywhere from MCUs to servers.</p>
77+
</div>
78+
<div class="feature-card">
79+
<h3>REST API via FastAPI</h3>
80+
<p>Full-featured REST API with OpenAPI docs, automatic validation, and async request handling powered by FastAPI.</p>
81+
</div>
82+
<div class="feature-card">
83+
<h3>JWT Auth + RBAC</h3>
84+
<p>JSON Web Token authentication with role-based access control for fine-grained permission management.</p>
85+
</div>
86+
<div class="feature-card">
87+
<h3>AES-256 Encryption at Rest</h3>
88+
<p>Transparent AES-256 encryption for data at rest with secure key management and automatic rotation.</p>
89+
</div>
90+
<div class="feature-card">
91+
<h3>Tamper-Resistant Audit Logging</h3>
92+
<p>Immutable, hash-chained audit logs for regulatory compliance and forensic analysis of all data operations.</p>
93+
</div>
94+
<div class="feature-card">
95+
<h3>Full-Text Search + Graph Queries</h3>
96+
<p>Built-in FTS5 full-text search and recursive graph traversal queries for relationship-heavy data models.</p>
97+
</div>
98+
<div class="feature-card">
99+
<h3>eBot AI Natural Language Interface</h3>
100+
<p>Ask questions in plain English and eBot translates them to optimized SQL queries with result explanations.</p>
101+
</div>
102+
</div>
103+
</section>
104+
105+
<section class="section section-alt" id="quickstart">
106+
<h2 class="section-title">Quick Start</h2>
107+
<p class="section-subtitle">Get up and running in seconds</p>
108+
<pre><code>pip install -e ".[dev]" && edb init && edb serve --port 8000</code></pre>
109+
</section>
110+
111+
<footer class="footer">
112+
<div class="footer-inner">
113+
<div class="footer-grid">
114+
<a href="https://embeddedos-org.github.io/">EmbeddedOS</a>
115+
<a href="https://embeddedos-org.github.io/eNI/">eNI</a>
116+
<a href="https://embeddedos-org.github.io/EoSim/">EoSim</a>
117+
<a href="https://embeddedos-org.github.io/EoStudio/">EoStudio</a>
118+
<a href="https://embeddedos-org.github.io/eApps/">eApps</a>
119+
<a href="https://embeddedos-org.github.io/eDB/">eDB</a>
120+
<a href="https://embeddedos-org.github.io/eAI/">eAI</a>
121+
<a href="https://embeddedos-org.github.io/eIPC/">eIPC</a>
122+
<a href="https://embeddedos-org.github.io/eOffice/">eOffice</a>
123+
<a href="https://embeddedos-org.github.io/eBrowser/">eBrowser</a>
124+
<a href="https://embeddedos-org.github.io/eRide/">eRide</a>
125+
<a href="https://embeddedos-org.github.io/eSocial/">eSocial</a>
126+
<a href="https://embeddedos-org.github.io/eTrack/">eTrack</a>
127+
<a href="https://embeddedos-org.github.io/eTravel/">eTravel</a>
128+
<a href="https://embeddedos-org.github.io/eWallet/">eWallet</a>
129+
</div>
130+
<div class="footer-bottom">&copy; 2026 EmbeddedOS Organization. Open-source under MIT License.</div>
131+
</div>
132+
</footer>
133+
</body>
134+
</html>

docs/site/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Allow: /
3+
Sitemap: https://embeddedos-org.github.io/sitemap.xml

docs/site/style.css

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
:root {
2+
--bg-primary: #0d1117; --bg-secondary: #161b22; --bg-tertiary: #1c2128; --bg-card: #21262d; --bg-hover: #292e36;
3+
--text-primary: #e6edf3; --text-secondary: #8b949e; --text-muted: #6e7681;
4+
--border-color: #30363d; --border-light: #21262d;
5+
--blue: #58a6ff; --green: #3fb950; --purple: #bc8cff; --orange: #f0883e; --cyan: #79c0ff; --pink: #f778ba; --yellow: #e3b341; --red: #f85149;
6+
--blue-dim: rgba(88,166,255,0.15); --green-dim: rgba(63,185,80,0.15); --purple-dim: rgba(188,140,255,0.15); --orange-dim: rgba(240,136,62,0.15); --cyan-dim: rgba(121,192,255,0.15); --pink-dim: rgba(247,120,186,0.15); --yellow-dim: rgba(227,179,65,0.15); --red-dim: rgba(248,81,73,0.15);
7+
--gradient-hero: linear-gradient(135deg, #0d1117 0%, #161b40 30%, #1a1040 60%, #0d1117 100%);
8+
--shadow-sm: 0 1px 3px rgba(0,0,0,0.3); --shadow-md: 0 4px 12px rgba(0,0,0,0.4); --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
9+
--radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px;
10+
--font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
11+
--font-mono: 'Cascadia Code', 'Fira Code', Consolas, monospace;
12+
--nav-height: 64px;
13+
}
14+
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
15+
html { scroll-behavior: smooth; font-size: 16px; }
16+
body { font-family: var(--font-sans); background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; -webkit-font-smoothing: antialiased; }
17+
a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
18+
a:hover { color: var(--blue); text-decoration: underline; }
19+
h1, h2, h3, h4 { line-height: 1.3; }
20+
h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); }
21+
h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
22+
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(13,17,23,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); height: var(--nav-height); display: flex; align-items: center; padding: 0 2rem; }
23+
.nav-inner { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
24+
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 700; color: var(--text-primary); text-decoration: none; }
25+
.logo:hover { text-decoration: none; color: var(--text-primary); }
26+
.logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, #1158a6, #58a6ff); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.8rem; color: #fff; }
27+
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
28+
.nav-links a { padding: 0.5rem 1rem; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
29+
.nav-links a:hover { color: var(--text-primary); background: var(--bg-tertiary); text-decoration: none; }
30+
.nav-links a.active { color: var(--blue); background: var(--blue-dim); }
31+
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; padding: 1rem 2rem 0; max-width: 1200px; margin: 0 auto; }
32+
.breadcrumb a { color: var(--text-secondary); }
33+
.breadcrumb .sep { color: var(--text-muted); }
34+
.hero { background: var(--gradient-hero); padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
35+
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(88,166,255,0.08) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(188,140,255,0.08) 0%, transparent 50%); }
36+
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
37+
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; }
38+
.hero .subtitle { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 2rem; }
39+
.hero-badges { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
40+
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
41+
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.7rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.25s; border: none; text-decoration: none !important; }
42+
.btn-primary { background: var(--blue); color: #fff !important; }
43+
.btn-primary:hover { background: #79b8ff; box-shadow: 0 0 20px rgba(88,166,255,0.3); transform: translateY(-2px); }
44+
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-secondary) !important; }
45+
.btn-outline:hover { border-color: var(--blue); color: var(--blue) !important; background: var(--blue-dim); }
46+
.badge { display: inline-flex; align-items: center; padding: 2px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; }
47+
.badge-blue { background: var(--blue-dim); color: var(--blue); }
48+
.badge-green { background: var(--green-dim); color: var(--green); }
49+
.badge-purple { background: var(--purple-dim); color: var(--purple); }
50+
.badge-orange { background: var(--orange-dim); color: var(--orange); }
51+
.badge-cyan { background: var(--cyan-dim); color: var(--cyan); }
52+
.badge-pink { background: var(--pink-dim); color: var(--pink); }
53+
.badge-yellow { background: var(--yellow-dim); color: var(--yellow); }
54+
.badge-red { background: var(--red-dim); color: var(--red); }
55+
.section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
56+
.section-alt { background: var(--bg-secondary); }
57+
.section-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; text-align: center; border: none; }
58+
.section-subtitle { color: var(--text-secondary); text-align: center; margin-bottom: 2rem; font-size: 1rem; }
59+
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
60+
.feature-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.5rem; transition: all 0.3s; }
61+
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--text-muted); }
62+
.feature-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; border: none; }
63+
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
64+
pre { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.2rem 1.5rem; overflow-x: auto; font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.7; margin: 1rem 0; }
65+
code { font-family: var(--font-mono); font-size: 0.85em; }
66+
:not(pre) > code { background: var(--bg-tertiary); padding: 2px 7px; border-radius: 4px; color: var(--cyan); }
67+
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
68+
th { background: var(--bg-tertiary); padding: 0.75rem 1rem; text-align: left; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--border-color); }
69+
td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--border-light); }
70+
tr:hover { background: rgba(255,255,255,0.04); }
71+
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-color); padding: 2rem; margin-top: 4rem; }
72+
.footer-inner { max-width: 1200px; margin: 0 auto; }
73+
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
74+
.footer-grid a { color: var(--text-secondary); font-size: 0.85rem; padding: 0.3rem 0; display: block; }
75+
.footer-grid a:hover { color: var(--blue); }
76+
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--border-color); }
77+
@media (max-width: 768px) {
78+
.hero h1 { font-size: 2rem; }
79+
.feature-grid { grid-template-columns: 1fr; }
80+
.nav-links { display: none; }
81+
.footer-grid { grid-template-columns: repeat(2, 1fr); }
82+
}

0 commit comments

Comments
 (0)