From 23d1e72d4e7a769acb7f380bf14e0655f0d241a6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 08:34:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 314c257..983ad14 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Fresh Bites - Fast, Quality Food Delivery & Pickup", description: "Order fresh, delicious food online for quick pickup or delivery. Browse our menu, customize your meal, and enjoy quality food fast. Open daily with special deals.", keywords: "food delivery, quick service, online ordering, fresh food, local restaurant, meal delivery, fast food", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Fresh Bites - Quality Food, Fast Service", description: "Order fresh, delicious meals online for pickup or delivery. Quality ingredients, quick turnaround, loyalty rewards.", siteName: "Fresh Bites", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/fresh-vegetable-salad-wooden-background_93675-129482.jpg", alt: "food dish fresh appetizing meal"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fresh Bites - Fresh Food, Fast Order", description: "Browse our menu, order online, and enjoy fresh meals delivered or ready for pickup.", images: ["http://img.b2bpic.net/free-photo/fresh-vegetable-salad-wooden-background_93675-129482.jpg"], - }, -}; + title: "Fresh Bites | Order Fresh Food Fast", description: "Browse our menu, customize your order, and enjoy fresh, delicious food quickly."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +