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
+24
View File
@@ -0,0 +1,24 @@
import Navbar from '@/components/Navbar';
import Accommodation from '@/components/Accommodation';
import Footer from '@/components/Footer';
import WhatsAppButton from '@/components/WhatsAppButton';
export default async function AccommodationPage({
params
}: {
params: Promise<{ locale: string }>
}) {
const { locale } = await params;
return (
<main className="min-h-screen bg-sand selection:bg-coral selection:text-white flex flex-col">
<Navbar locale={locale} />
{/* Spacer to push content below fixed navbar */}
<div className="flex-grow pt-24">
<Accommodation />
</div>
<Footer />
<WhatsAppButton />
</main>
);
}