app-quick-bear-yawn/app/page.tsx

18 lines
436 B
TypeScript

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>
);
}