Section Library
Copy-paste ready components for your landing page. Each section is fully customizable and built with TypeScript, Tailwind CSS, and shadcn/ui.
Hero Sections
Eye-catching hero sections to make a strong first impression.
Centered with Badge
---
import Hero from "@/components/sections/Hero.astro";
---
<Hero
badge="NEW"
badgeText="Introducing our latest feature"
title="Build amazing products faster"
subtitle="Start with our pre-built components and focus on what matters. Ship faster, iterate quicker."
primaryCta={{ text: "Get Started", href: "/signup" }}
secondaryCta={{ text: "Learn More", href: "/docs" }}
centered
/> Build amazing products faster
Start with our pre-built components and focus on what matters. Ship faster, iterate quicker.
Left Aligned with Visual
---
import Hero from "@/components/sections/Hero.astro";
---
<Hero
tagline="🚀 Launch Week"
title="Ship your SaaS in days, not months"
subtitle="Everything you need to build a modern landing page. TypeScript, Tailwind, and shadcn/ui included."
primaryCta={{ text: "Start Building", href: "/get-started" }}
secondaryCta={{ text: "View Demo", href: "/demo" }}
image={{ src: "/images/hero.png", alt: "Product screenshot" }}
/> Ship your SaaS in days, not months
Everything you need to build a modern landing page. TypeScript, Tailwind, and shadcn/ui included.
Image Placeholder
Minimal with Stats
---
import Hero from "@/components/sections/Hero.astro";
---
<Hero
title="The complete toolkit for modern development"
subtitle="Join thousands of developers building with AstroDeck"
centered
stats={[
{ value: "50K+", label: "Downloads" },
{ value: "1.2K+", label: "GitHub Stars" },
{ value: "99%", label: "Satisfaction" }
]}
/> The complete toolkit for modern development
Join thousands of developers building with AstroDeck
Call to Action
Convert visitors with compelling CTAs.
Simple Centered
---
import CTA from "@/components/sections/CTA.astro";
---
<CTA
title="Ready to get started?"
subtitle="Join thousands of developers already using AstroDeck to build amazing products."
primaryCta={{ text: "Start Free Trial", href: "/trial" }}
/> Ready to get started?
Join thousands of developers already using AstroDeck to build amazing products.
Start Free TrialSplit with Features
---
import CTA from "@/components/sections/CTA.astro";
---
<CTA
title="Build faster with our components"
features={[
"Pre-built components",
"Full TypeScript support",
"Dark mode ready"
]}
primaryCta={{ text: "Get Started Free", href: "/signup" }}
secondaryCta={{ text: "View Documentation", href: "/docs" }}
variant="split"
/> Build faster with our components
- Pre-built components
- Full TypeScript support
- Dark mode ready
Banner Style
---
import CTA from "@/components/sections/CTA.astro";
---
<CTA
title="Try AstroDeck today"
subtitle="Start building your next project with our components"
primaryCta={{ text: "Download Now", href: "/download" }}
secondaryCta={{ text: "GitHub", href: "https://github.com" }}
variant="banner"
/> Try AstroDeck today
Start building your next project with our components
Pricing Tables
Clear pricing that converts.
AstroDeck Open Source
---
import Pricing from "@/components/sections/Pricing.astro";
---
<Pricing
title="Free forever. Open source."
subtitle="All features included. No hidden costs."
plans={[
{
name: "Landing Page",
description: "Everything you need for a stunning landing page.",
price: "Free",
features: ["Hero & CTA sections", "Logo cloud", "Feature showcase", "Responsive design", "Dark mode support"],
cta: { text: "View on GitHub", href: "https://github.com" }
},
{
name: "Full SaaS",
description: "Complete boilerplate for your SaaS product.",
price: "Free",
featured: true,
features: ["All landing page features", "Authentication layouts", "Pricing sections", "Privacy & legal pages", "TypeScript & shadcn/ui", "Production-ready"],
cta: { text: "Get Started", href: "/get-started" }
},
{
name: "Open Source",
description: "MIT licensed and open for contributions.",
price: "Free",
features: ["Full source code access", "Regular updates", "Community support", "No vendor lock-in", "Commercial use allowed"],
cta: { text: "Star on GitHub", href: "https://github.com" }
}
]}
/> Free forever. Open source.
All features included. No hidden costs.
Landing Page
Everything you need for a stunning landing page.
- Hero & CTA sections
- Logo cloud
- Responsive design
Full SaaS
Complete boilerplate for your SaaS product.
- All landing page features
- Authentication layouts
- TypeScript & shadcn/ui
Open Source
MIT licensed and open for contributions.
- Full source code access
- Regular updates
- Commercial use allowed
Three Column Layout
---
import Pricing from "@/components/sections/Pricing.astro";
---
<Pricing
plans={[
{
name: "Starter",
description: "For small projects",
price: "$9",
period: "/month",
features: ["5 Projects", "Basic Support", "1 GB Storage"],
cta: { text: "Get Started", href: "/signup" }
},
{
name: "Pro",
description: "For growing teams",
price: "$29",
period: "/month",
featured: true,
badge: "Popular",
features: ["Unlimited Projects", "Priority Support", "100 GB Storage"],
cta: { text: "Get Started", href: "/signup" }
},
{
name: "Enterprise",
description: "For large organizations",
price: "Custom",
features: ["Everything in Pro", "24/7 Support", "Unlimited Storage"],
cta: { text: "Contact Sales", href: "/contact" }
}
]}
/> Comparison Table
---
import Pricing from "@/components/sections/Pricing.astro";
---
<Pricing
title="Choose your plan"
subtitle="Simple, transparent pricing"
variant="comparison"
features={["Projects", "Storage", "Support"]}
plans={[
{ name: "Free", values: ["3", "1 GB", "Community"] },
{ name: "Pro", values: ["Unlimited", "100 GB", "Email"] },
{ name: "Enterprise", values: ["Unlimited", "Unlimited", "24/7"] }
]}
/> Choose your plan
Simple, transparent pricing
| Features | Free | Pro | Enterprise |
|---|---|---|---|
| Projects | 3 | Unlimited | Unlimited |
| Storage | 1 GB | 100 GB | Unlimited |
| Support | Community | 24/7 |
Monthly/Yearly Toggle
---
import Pricing from "@/components/sections/Pricing.astro";
---
<Pricing
title="Flexible pricing"
subtitle="Save 20% with annual billing"
variant="toggle"
plans={[
{
name: "Basic",
monthlyPrice: "$19",
yearlyPrice: "$15",
cta: { text: "Choose Plan", href: "/signup" }
},
{
name: "Professional",
monthlyPrice: "$49",
yearlyPrice: "$39",
featured: true,
cta: { text: "Choose Plan", href: "/signup" }
}
]}
/> Flexible pricing
Save 20% with annual billing
Testimonials
Build trust with social proof.
Grid Layout
---
import Testimonials from "@/components/sections/Testimonials.astro";
---
<Testimonials
items={[
{
quote: "AstroDeck saved us weeks of development time. The components are beautiful and easy to customize.",
author: "Sarah Chen",
role: "CEO, TechCorp",
avatar: "/images/avatar-1.jpg"
},
{
quote: "Best Astro boilerplate I've used. Clean code, great documentation, and excellent support.",
author: "Marcus Johnson",
role: "Developer"
},
{
quote: "The perfect starting point for any SaaS project. Highly recommended for anyone using Astro.",
author: "Emily Rodriguez",
role: "Product Manager"
}
]}
/> "AstroDeck saved us weeks of development time. The components are beautiful and easy to customize."
Sarah Chen
CEO, TechCorp
"Best Astro boilerplate I've used. Clean code, great documentation, and excellent support."
Marcus Johnson
Developer
"The perfect starting point for any SaaS project. Highly recommended for anyone using Astro."
Emily Rodriguez
Product Manager
Featured Single
---
import Testimonials from "@/components/sections/Testimonials.astro";
---
<Testimonials
variant="featured"
quote="AstroDeck has completely transformed how we build landing pages. The quality of the components and attention to detail is exceptional. Our development time has been cut in half."
author="Alex Kim"
role="CTO, StartupCo"
avatar="/images/avatar.jpg"
/> AstroDeck has completely transformed how we build landing pages. The quality of the components and attention to detail is exceptional. Our development time has been cut in half.
Alex Kim
CTO, StartupCo
Horizontal Scroll
---
import Testimonials from "@/components/sections/Testimonials.astro";
---
<Testimonials
variant="scroll"
items={[
{ quote: "Game changer for our team!", author: "Jane Doe", role: "Designer" },
{ quote: "Excellent components and documentation.", author: "Tom Peters", role: "Engineer" },
{ quote: "Best boilerplate for Astro projects.", author: "Lisa Wang", role: "Founder" },
{ quote: "Saved us months of development.", author: "Ryan Brown", role: "Developer" }
]}
/> "Game changer for our team!"
Jane Doe
Designer
"Excellent components and documentation."
Tom Peters
Engineer
"Best boilerplate for Astro projects."
Lisa Wang
Founder