53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import "aos/dist/aos.css";
|
|
import React from "react";
|
|
import { WaitingListWithImageHero } from "@/sections/Hero";
|
|
import PageWrapper from "@/components/Utilities/PageWrapper";
|
|
import Footer from "@/components/Footer";
|
|
import PageHeader from "@/sections/PageHeader";
|
|
import ContainerImageIconBlocksFeature from "@/sections/Features/ContainerImageIconBlocksFeature";
|
|
import Background from "@/components/Utilities/Background";
|
|
import CardTestemonial from "@/sections/Testemonial/CardTestemonial";
|
|
import Payment from "@/sections/Payment";
|
|
import CardsFeature from "@/sections/Features/CardsFeature";
|
|
import FAQ from "@/sections/FAQ/RightAlignedBorderBottomFAQ";
|
|
import VerticalTabsFeature from "@/sections/Features/VerticalTabsFeature";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<PageWrapper>
|
|
<WaitingListWithImageHero />
|
|
<VerticalTabsFeature />
|
|
<div className="bg-primary/2">
|
|
<ContainerImageIconBlocksFeature />
|
|
</div>
|
|
<PageHeader
|
|
title={"You Will Hate FastPocket If..."}
|
|
className="!pt-16"
|
|
subtitle={<></>}
|
|
/>
|
|
<CardsFeature />
|
|
<Background>
|
|
<CardTestemonial />
|
|
</Background>
|
|
<PageHeader
|
|
title={"Want To Start Building Your Apps Faster?"}
|
|
className="!pt-16"
|
|
subtitle={
|
|
<>
|
|
{" "}
|
|
<h2 className="text-base-content text-2xl font-medium content text-center max-w-6xl mx-auto px-6">
|
|
Purchase now to get early access at a discounted price and start
|
|
building with fly.io and docker compose templates immediately!
|
|
</h2>
|
|
</>
|
|
}
|
|
/>
|
|
<Payment />
|
|
<FAQ />
|
|
<Footer />
|
|
</PageWrapper>
|
|
</>
|
|
);
|
|
}
|