Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-16 15:56:41 +00:00
parent 58b136fa84
commit 1eec9872e1
1 changed files with 29 additions and 0 deletions

29
app/page.tsx Normal file
View File

@ -0,0 +1,29 @@
import { Container } from "@/components/container";
import { Hero } from "@/components/hero";
import { Background } from "@/components/background";
import { Features } from "@/components/features";
import { Projects } from "@/components/projects";
import { CTA } from "@/components/cta";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<div className="relative bg-[#f4f1ea]">
<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 />
<Projects />
<Features />
</Container>
<div className="relative">
<div className="absolute inset-0 h-full w-full overflow-hidden">
<Background />
</div>
<CTA />
</div>
<Footer />
</div>
);
}