Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 12:58:31 +00:00
parent 2cd415ce61
commit 81d9740e8c
1 changed files with 17 additions and 0 deletions

17
app/page.tsx Normal file
View File

@ -0,0 +1,17 @@
import { Hero } from "@/components/hero";
import { WhatWeDo } from "@/components/what-we-do";
import { WhyChoose } from "@/components/why-choose";
import { HowItWorksSection } from "@/components/how-it-works-section";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<main className="min-h-screen">
<Hero />
<WhatWeDo />
<WhyChoose />
<HowItWorksSection />
<Footer />
</main>
);
}