mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-23 21:18:40 +02:00
Single-page marketing site built with Astro 5 and Tailwind CSS v4. Produces static HTML with zero client-side JS — ideal for Cloudflare Pages deployment. Sections: hero with screenshot placeholder, 6 feature cards, 5 orchestration patterns showcase, 4-step getting started guide, tech banner, and footer. Dark theme (zinc-950/indigo accents) matches the app aesthetic. Responsive design with mobile navigation. Build: cd website && bun install && bun run build Output: website/dist/ To add a real screenshot, replace website/public/images/screenshot-placeholder.svg with website/public/images/screenshot.png and update the img src in website/src/pages/index.astro. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
17 lines
305 B
JSON
17 lines
305 B
JSON
{
|
|
"name": "aryx-website",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview"
|
|
},
|
|
"dependencies": {
|
|
"astro": "^5.7.10",
|
|
"@tailwindcss/vite": "^4.1.4",
|
|
"tailwindcss": "^4.1.4"
|
|
}
|
|
}
|