Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 14:07:14 +00:00
parent 83b6f81677
commit f9a05d1e52
1 changed files with 23 additions and 0 deletions

23
app/page.tsx Normal file
View File

@ -0,0 +1,23 @@
import { Hero } from "@/components/hero";
import { About } from "@/components/about";
import { Services } from "@/components/services";
import { CareerFlow } from "@/components/career-flow";
import { WhyChooseUs } from "@/components/why-choose-us";
import { Contact } from "@/components/contact";
import { LeadForm } from "@/components/lead-form";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<main className="min-h-screen">
<Hero />
<About />
<Services />
<CareerFlow />
<WhyChooseUs />
<LeadForm />
<Contact />
<Footer />
</main>
);
}