39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import type { Metadata } from "next";
|
||
import "./globals.css";
|
||
|
||
export const metadata: Metadata = {
|
||
title: "Luna Cocktail & More | Menü",
|
||
description:
|
||
"Luna Cocktail and More - Özel kokteyllerimiz, şaraplarımız ve daha fazlası. QR menü ile keşfedin.",
|
||
keywords: "cocktail, kokteyl, bar, menü, luna, drinks",
|
||
openGraph: {
|
||
title: "Luna Cocktail & More | Menü",
|
||
description: "Özel kokteyllerimiz, şaraplarımız ve daha fazlası.",
|
||
type: "website",
|
||
},
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html lang="tr">
|
||
<head>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||
<link
|
||
rel="preconnect"
|
||
href="https://fonts.gstatic.com"
|
||
crossOrigin="anonymous"
|
||
/>
|
||
<link
|
||
href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap"
|
||
rel="stylesheet"
|
||
/>
|
||
</head>
|
||
<body suppressHydrationWarning>{children}</body>
|
||
</html>
|
||
);
|
||
}
|