Layout

Layout

The Layout component is used to wrap the content of a page.

---
import Hero from 'fulldev-ui/blocks/Hero.astro'
import Layout from 'fulldev-ui/layouts/Layout.astro'
---

<Layout>
  <Hero
    heading="Layout"
    text="The Layout component is used to wrap the content of a page."
    align="center"
    frame="viewport"
  />
</Layout>