Update app/page.tsx
This commit is contained in:
parent
b3aa5c84d1
commit
f950a436f1
|
|
@ -0,0 +1,17 @@
|
|||
import { Hero } from "@/components/hero";
|
||||
import { Services } from "@/components/services";
|
||||
import { Testimonials } from "@/components/testimonials";
|
||||
import { Booking } from "@/components/booking";
|
||||
import { Footer } from "@/components/footer";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main className="min-h-screen">
|
||||
<Hero />
|
||||
<Services />
|
||||
<Testimonials />
|
||||
<Booking />
|
||||
<Footer />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue