31 lines
897 B
TypeScript
31 lines
897 B
TypeScript
import { Container } from "@/components/container";
|
|
import { Hero } from "@/components/hero";
|
|
import { Background } from "@/components/background";
|
|
import { Features } from "@/components/features";
|
|
import { CaseStudies } from "@/components/case-studies";
|
|
import { FAQ } from "@/components/faq";
|
|
import { CTA } from "@/components/cta";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative">
|
|
<div className="absolute inset-0 h-full w-full overflow-hidden ">
|
|
<Background />
|
|
</div>
|
|
<Container className="flex min-h-screen flex-col items-center justify-between ">
|
|
<Hero />
|
|
<Features />
|
|
<CaseStudies />
|
|
<FAQ />
|
|
</Container>
|
|
<div className="relative">
|
|
<div className="absolute inset-0 h-full w-full overflow-hidden">
|
|
<Background />
|
|
</div>
|
|
<CTA />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|