39 lines
930 B
TypeScript
39 lines
930 B
TypeScript
import { Header } from "@/components/header";
|
|
import { Hero } from "@/components/hero";
|
|
import { About } from "@/components/about";
|
|
import { Gallery } from "@/components/gallery";
|
|
import { Amenities } from "@/components/amenities";
|
|
import { Pricing } from "@/components/pricing";
|
|
import { Location } from "@/components/location";
|
|
import { Contact } from "@/components/contact";
|
|
import { Footer } from "@/components/footer";
|
|
import { FadeIn } from "@/components/ui/fade-in";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Header />
|
|
<Hero />
|
|
<FadeIn>
|
|
<About />
|
|
</FadeIn>
|
|
<FadeIn>
|
|
<Gallery />
|
|
</FadeIn>
|
|
<FadeIn>
|
|
<Amenities />
|
|
</FadeIn>
|
|
<FadeIn>
|
|
<Pricing />
|
|
</FadeIn>
|
|
<FadeIn>
|
|
<Location />
|
|
</FadeIn>
|
|
<FadeIn>
|
|
<Contact />
|
|
</FadeIn>
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|