Update app/page.tsx
This commit is contained in:
parent
83b6f81677
commit
f9a05d1e52
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue