first commit

This commit is contained in:
mstfyldz
2026-06-03 03:59:46 +03:00
parent 5882fc12c1
commit bba389b513
30 changed files with 3153 additions and 149 deletions
+35
View File
@@ -0,0 +1,35 @@
import Navbar from '@/components/Navbar';
import Hero from '@/components/Hero';
import About from '@/components/About';
import Accommodation from '@/components/Accommodation';
import Beach from '@/components/Beach';
import Dining from '@/components/Dining';
import Events from '@/components/Events';
import Gallery from '@/components/Gallery';
import Contact from '@/components/Contact';
import Footer from '@/components/Footer';
import WhatsAppButton from '@/components/WhatsAppButton';
export default async function Page({
params
}: {
params: Promise<{ locale: string }>
}) {
const { locale } = await params;
return (
<main className="min-h-screen bg-cream selection:bg-turquoise selection:text-white">
<Navbar locale={locale} />
<Hero />
<About />
<Accommodation />
<Beach />
<Dining />
<Events />
<Gallery />
<Contact />
<Footer />
<WhatsAppButton />
</main>
);
}