mirror of
https://github.com/arthur-pbty/flint.git
synced 2026-08-01 20:29:03 +02:00
20 lines
511 B
TypeScript
20 lines
511 B
TypeScript
import Features from "../../components/Features";
|
|
import Footer from "../../components/Footer";
|
|
import Hero from "../../components/Hero";
|
|
import HowItWorks from "../../components/HowItWorks";
|
|
import PageWrapper from "../../components/ui/PageWrapper";
|
|
|
|
export default async function HomePage() {
|
|
return (
|
|
<PageWrapper
|
|
contentClassName="space-y-14 md:space-y-16"
|
|
currentPath="home"
|
|
footer={<Footer />}
|
|
>
|
|
<Hero />
|
|
<Features />
|
|
<HowItWorks />
|
|
</PageWrapper>
|
|
);
|
|
}
|