Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<a href="{{ '/#demo' | relative_url }}">Demo</a>
<a href="{{ '/#runtime' | relative_url }}">Runtime</a>
<a href="{{ '/use-cases.html' | relative_url }}">Use Cases</a>
<a href="https://github.com/Bowen-AI/AgenticLocal" rel="noopener" target="_blank">GitHub</a>
<a href="{{ '/install.html' | relative_url }}">Install</a>
<a href="{{ '/github-pages.html' | relative_url }}">Deploy</a>
</nav>
Expand Down
24 changes: 24 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
content="A local-first agent runtime for tool use, workspace policy, durable memory, event streams, voice, and provider adapters."
>
<meta property="og:type" content="website">
<meta name="author" content="Bowen AI">
<meta property="og:url" content="https://bowen-ai.github.io/AgenticLocal/">
<meta property="og:image" content="https://bowen-ai.github.io/AgenticLocal/assets/screenshots/voice-mode.svg">
<meta name="twitter:card" content="summary_large_image">
Expand All @@ -45,6 +46,12 @@
"url": "https://bowen-ai.github.io/AgenticLocal/",
"description": "Local-first agent runtime with tools, policy, memory, event streams, voice, and provider-swappable model adapters."
},
{
"@type": "Person",
"name": "Bowen",
"url": "https://bowenislandsong.github.io/#/personal",
"sameAs": ["https://github.com/Bowen-AI"]
},
{
"@type": "SoftwareSourceCode",
"name": "AgenticLocal",
Expand All @@ -69,6 +76,7 @@
<a href="#demo">Demo</a>
<a href="#runtime">Runtime</a>
<a href="#use-cases">Use Cases</a>
<a href="#about">About</a>
<a href="install.html">Install</a>
<a href="github-pages.html">Deploy</a>
</nav>
Expand All @@ -88,6 +96,7 @@ <h1 id="hero-title">AgenticLocal</h1>
</p>
<div class="hero-actions" aria-label="Primary links">
<a class="button primary" href="install.html">Install</a>
<a class="button secondary" href="https://github.com/Bowen-AI/AgenticLocal" rel="noopener" target="_blank">Open Source on GitHub</a>
<a class="button secondary" href="example-screenshots.html">Screenshots</a>
</div>
</div>
Expand Down Expand Up @@ -181,6 +190,21 @@ <h3>Voice companion</h3>
</p>
</section>


<section id="about" class="about" aria-labelledby="about-title">
<div class="section-heading">
<p class="eyebrow">About us</p>
<h2 id="about-title">Built by Bowen AI</h2>
</div>
<p class="about-copy">
AgenticLocal is created and maintained by Bowen. Learn more about the builder and background on the
personal page.
</p>
<p class="section-link">
<a href="https://bowenislandsong.github.io/#/personal" rel="noopener" target="_blank">Meet Bowen and read the personal profile</a>
</p>
</section>

<section class="docs-band" aria-labelledby="docs-title">
<div class="section-heading">
<p class="eyebrow">Docs</p>
Expand Down
15 changes: 15 additions & 0 deletions docs/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ h3 {
.showcase,
.runtime,
.use-cases,
.about,
.docs-band {
padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}
Expand Down Expand Up @@ -534,3 +535,17 @@ h3 {
flex-direction: column;
}
}


.about {
background: var(--surface);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}

.about-copy {
max-width: 760px;
margin-top: 24px;
color: var(--muted);
font-size: 18px;
}
Loading