22 lines
530 B
TypeScript
22 lines
530 B
TypeScript
import Navbar from "@/components/Navbar";
|
|
import Hero from "@/components/Hero";
|
|
import About from "@/components/About";
|
|
import Events from "@/components/Events";
|
|
import Cocktails from "@/components/Cocktails";
|
|
import Gallery from "@/components/Gallery";
|
|
import Footer from "@/components/Footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="flex flex-col min-h-screen">
|
|
<Navbar />
|
|
<Hero />
|
|
<About />
|
|
<Events />
|
|
<Cocktails />
|
|
<Gallery />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|