first commit

This commit is contained in:
mstfyldz
2026-06-03 04:27:40 +03:00
parent dcfaf2723c
commit 48277fe8d2
22 changed files with 1610 additions and 117 deletions
+10 -10
View File
@@ -1,20 +1,20 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Inter, Playfair_Display } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const playfair = Playfair_Display({
variable: "--font-playfair",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Luna Cocktail & More",
description: "Luxury Cocktail Bar in Muğla - From Sunset to Night",
};
export default function RootLayout({
@@ -24,10 +24,10 @@ export default function RootLayout({
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
lang="tr"
className={`${inter.variable} ${playfair.variable} h-full antialiased scroll-smooth`}
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="min-h-full flex flex-col selection:bg-accent1 selection:text-primary">{children}</body>
</html>
);
}