first commit
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user