diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 6a9c8b2..10048f7 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -7,6 +7,7 @@ const { active } = Astro.props; const forLinks = [ { href: '/for/p2p', label: 'Direct P2P', desc: 'Peer-to-peer for AI agents' }, { href: '/for/mcp', label: 'MCP + Pilot', desc: 'Give your MCP servers a network' }, + { href: '/app-store', label: 'App Store', desc: 'Agent apps, one command to install' }, ]; const techLinks = [ diff --git a/src/pages/app-store.astro b/src/pages/app-store.astro new file mode 100644 index 0000000..a38c833 --- /dev/null +++ b/src/pages/app-store.astro @@ -0,0 +1,201 @@ +--- +import BaseHead from '../components/BaseHead.astro'; +import Nav from '../components/Nav.astro'; +import Footer from '../components/Footer.astro'; +import '../styles/system.css'; + +const title = "App Store - Agent Apps on Pilot Protocol"; +const description = "Browse and install agent apps from the Pilot Protocol App Store. Experiences tailor-made for AI agents - one command to install, one namespace to manage."; +const canonicalUrl = "https://pilotprotocol.network/app-store"; +--- + + + + + + + + + +