34 lines
801 B
TypeScript
34 lines
801 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, Playfair_Display } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const playfair = Playfair_Display({
|
|
variable: "--font-playfair",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Luna Cocktail & More",
|
|
description: "Luxury Cocktail Bar in Muğla - From Sunset to Night",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html
|
|
lang="tr"
|
|
className={`${inter.variable} ${playfair.variable} h-full antialiased scroll-smooth`}
|
|
>
|
|
<body className="min-h-full flex flex-col selection:bg-accent1 selection:text-primary">{children}</body>
|
|
</html>
|
|
);
|
|
}
|