Files
lunaqrmenu/app/layout.tsx
2026-04-30 01:48:08 +03:00

39 lines
1.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}