24 lines
641 B
TypeScript
24 lines
641 B
TypeScript
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>
|
|
);
|
|
}
|