Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-15 13:03:10 +00:00
parent 4800dd3a94
commit bda63989dc
1 changed files with 28 additions and 0 deletions

28
app/page.tsx Normal file
View File

@ -0,0 +1,28 @@
import { Container } from "@/components/container";
import { Hero } from "@/components/hero";
import { Background } from "@/components/background";
import { Features } from "@/components/features";
import { Menu } from "@/components/menu";
import { CTA } from "@/components/cta";
export default function Home() {
return (
<div className="relative">
<div className="absolute inset-0 h-full w-full overflow-hidden ">
{/* removed */}
</div>
<Container className="flex min-h-screen flex-col items-center justify-between ">
<Hero />
<Menu />
<Features />
</Container>
<div className="relative">
<div className="absolute inset-0 h-full w-full overflow-hidden">
{/* removed */}
</div>
<CTA />
</div>
</div>
);
}