sitereal
v0.1
NewOne project file, real Astro output

sitereal Documentation

Everything you need to build with sitereal — the visual builder for Astro that writes real files: elements and styling, the design system, navigation, motion, content and the agent tools that drive all of it.

Explore by categories

What sitereal writes

Every page you compose is emitted as a plain .astro file next to plain CSS. There is no runtime, no database and nothing on the page that reads the builder’s own project file — delete sitereal and the site still builds.

src/pages/pricing.astro
---
import PlainBase from '../layouts/PlainBase.astro';
import '../styles/generated/framework.css';
import '../styles/generated/pages/pricing.css';
---
<PlainBase title="Pricing">
  <section builder-data-element="section" class="pricing">
    <div builder-data-element="container">
      <h1 builder-data-element="heading" class="pricing__title">Pricing</h1>
    </div>
  </section>
</PlainBase>

New here? Start with Introduction, then build something in Your first page.