Initial release — Astro Rocket v1.0.0

This commit is contained in:
Claude
2026-04-06 07:31:47 +00:00
commit ddd0c22311
275 changed files with 38839 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
---
import CTASection from '@/components/ui/marketing/CTA/CTA.astro';
import Button from '@/components/ui/form/Button/Button.astro';
import Icon from '@/components/ui/primitives/Icon/Icon.astro';
import Logo from '@/components/ui/marketing/Logo/Logo.astro';
import NpmCopyButton from '@/components/ui/marketing/NpmCopyButton/NpmCopyButton.astro';
---
<CTASection id="cta" variant="default" size="xl" maxWidth="lg">
<Logo slot="logo" size="2xl" class="mx-auto" />
<h2 slot="heading">
Stop configuring. <span class="text-brand-500">Start building.</span>
</h2>
<p slot="description">
Join the developers building faster, better websites with Astro Rocket. Open source and free forever.
</p>
<Fragment slot="actions">
<NpmCopyButton command="npm create astro@latest" />
<Button variant="outline" size="lg" href="https://github.com/hansmartens68/Astro-Rocket#readme" target="_blank">
<Icon name="book" size="md" />
View docs
</Button>
</Fragment>
</CTASection>