25 lines
680 B
TypeScript
25 lines
680 B
TypeScript
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>
|
|
);
|
|
}
|