Why Astro?

Astro is a modern static site generator that allows you to build fast, content-focused websites with a better developer experience. It ships zero JavaScript by default, making your sites incredibly fast.

Key Features

Getting Started

To create a new Astro project, run:

npm create astro@latest

This will walk you through setting up a new project with all the necessary files and dependencies.

Your First Page

Create a new file in src/pages/about.astro:

---
import Layout from '../layouts/Layout.astro';
---

<Layout title="About Me">
  <h1>About Me</h1>
  <p>Welcome to my site!</p>
</Layout>

That’s it! Your site now has an /about route.

Next Steps

Happy building! 🚀