app-vibrant-gecko-yawn/app/page.tsx

30 lines
993 B
TypeScript

import { Container } from "@/components/container";
import { Hero } from "@/components/hero";
import { Background } from "@/components/background";
import { Features } from "@/components/features";
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 />
{/* <Companies /> - Client logos carousel - TRANSFORM or DELETE based on use case */}
<Features />
{/* <GridFeatures /> - Additional features grid - OPTIONAL */}
{/* <Testimonials /> - Customer testimonials - OPTIONAL */}
</Container>
<div className="relative">
<div className="absolute inset-0 h-full w-full overflow-hidden">
<Background />
</div>
<CTA />
</div>
</div>
);
}