18 lines
399 B
Plaintext
18 lines
399 B
Plaintext
---
|
|
import Container from "@components/container.astro";
|
|
import Cta from "@components/cta.astro";
|
|
import Features from "@components/features.astro";
|
|
import Hero from "@components/hero.astro";
|
|
import Logos from "@components/logos.astro";
|
|
import Layout from "@layouts/Layout.astro";
|
|
---
|
|
|
|
<Layout title="">
|
|
<Container>
|
|
<Hero />
|
|
<Features />
|
|
<Logos />
|
|
<Cta />
|
|
</Container>
|
|
</Layout>
|