34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
---
|
|
import { SITE } from "~/config.mjs";
|
|
import { getCanonical, getHomePermalink } from "~/utils/permalinks";
|
|
import Layout from "~/layouts/PageLayout.astro";
|
|
|
|
import Hero from "~/components/widgets/Hero.astro";
|
|
import BasicCTA from "~/components/widgets/BasicCTA.astro";
|
|
import BasicFeatures from "~/components/widgets/BasicFeatures.astro";
|
|
import StepsFeatures from "~/components/widgets/StepsFeatures.astro";
|
|
import FAQs from "~/components/widgets/FAQs.astro";
|
|
import TwoColsFeatures from "~/components/widgets/TwoColsFeatures.astro";
|
|
import StepsLeft from "~/components/widgets/StepsLeft.astro";
|
|
import HighlightedPosts from "~/components/widgets/HighlightedPosts.astro";
|
|
import Stats from "~/components/widgets/Stats.astro";
|
|
|
|
const meta = {
|
|
title: SITE.title,
|
|
description: SITE.description,
|
|
canonical: getCanonical(getHomePermalink()),
|
|
};
|
|
---
|
|
|
|
<Layout meta={meta}>
|
|
<Hero />
|
|
<BasicFeatures />
|
|
<StepsLeft />
|
|
<TwoColsFeatures />
|
|
<StepsFeatures />
|
|
<HighlightedPosts />
|
|
<FAQs />
|
|
<Stats />
|
|
<BasicCTA />
|
|
</Layout>
|