65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
import type { Metadata } from "next";
|
||
import { Literata, Nunito_Sans } from "next/font/google";
|
||
import { NextIntlClientProvider } from 'next-intl';
|
||
import { getMessages, setRequestLocale } from 'next-intl/server';
|
||
import { notFound } from 'next/navigation';
|
||
import { routing } from '@/i18n/routing';
|
||
import Header from '@/components/Header';
|
||
import Footer from '@/components/Footer';
|
||
import "../globals.css";
|
||
|
||
const nunito_sans = Nunito_Sans({
|
||
variable: "--font-nunito-sans",
|
||
subsets: ["latin"],
|
||
weight: ["400", "600", "700"],
|
||
});
|
||
|
||
const literata = Literata({
|
||
variable: "--font-literata",
|
||
subsets: ["latin"],
|
||
weight: ["400", "500", "600", "700"],
|
||
});
|
||
|
||
export const metadata: Metadata = {
|
||
title: "Sitar Apart & Otel",
|
||
description: "Akyaka'nın Huzuru Sizinle!",
|
||
};
|
||
|
||
export function generateStaticParams() {
|
||
return routing.locales.map((locale) => ({locale}));
|
||
}
|
||
|
||
export default async function RootLayout({
|
||
children,
|
||
params
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
params: Promise<{ locale: string }>;
|
||
}>) {
|
||
const { locale } = await params;
|
||
|
||
if (!routing.locales.includes(locale as any)) {
|
||
notFound();
|
||
}
|
||
|
||
setRequestLocale(locale);
|
||
const messages = await getMessages();
|
||
|
||
return (
|
||
<html
|
||
lang={locale}
|
||
className={`${nunito_sans.variable} ${literata.variable} h-full antialiased font-sans`}
|
||
>
|
||
<body className="min-h-full flex flex-col bg-[#F8FAFC] text-[#0F172A]" suppressHydrationWarning>
|
||
<NextIntlClientProvider messages={messages}>
|
||
<Header />
|
||
<main className="flex-1 flex flex-col">
|
||
{children}
|
||
</main>
|
||
<Footer />
|
||
</NextIntlClientProvider>
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|