Initialize repo
This commit is contained in:
38
app/page.tsx
Normal file
38
app/page.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user