From 693b3c9bb26035117c15eb9367b98eef40be9c66 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:43:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a1ed70b..35ded96 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Peshtite Restaurant Haskovo | Local Food, Great Prices", description: "Local restaurant in Haskovo serving fresh, delicious Bulgarian food. Dine-in, takeaway, delivery. BGN 10–20 per person. 4.3★ rating. Call 088 897 0777.", keywords: "restaurant haskovo, best restaurant haskovo, dine in haskovo, food delivery haskovo, peshtite restaurant, bulgarian food, local restaurant", openGraph: { - title: "Peshtite Restaurant Haskovo", description: "Fresh local food, generous portions, warm atmosphere. Open daily until midnight.", siteName: "Peshtite", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/salad-with-walnuts-tomatoes-oranges-shrimps_140725-2836.jpg", alt: "Delicious local food at Peshtite restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Peshtite Restaurant Haskovo", description: "Local Bulgarian restaurant with fresh ingredients and generous portions.", images: [ - "http://img.b2bpic.net/free-photo/salad-with-walnuts-tomatoes-oranges-shrimps_140725-2836.jpg"], - }, -}; + title: "Peshtite Restaurant | Local Bulgarian Food in Haskovo", description: "Fresh ingredients, generous portions, and warm atmosphere. Dine-in, takeaway, or delivery. Open daily until midnight."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +