From 5fd8cef9718d42cab111fae18ca87d12899a6286 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:04:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 64 ++++++++++------------------------------------ 1 file changed, 13 insertions(+), 51 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a7a2a79..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,65 +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: "FoodHub - Order Delicious Food Online | Best Food Delivery", - description: "Order food online from 500+ restaurants. Fast delivery, fresh meals, and exclusive deals. Download FoodHub today for delicious dining at your doorstep.", - keywords: "food delivery, online food ordering, restaurants, fast delivery, meal delivery service", - openGraph: { - title: "FoodHub - Your Favorite Food Delivered Fast", - description: "Discover amazing restaurants and get fresh food delivered in 30 minutes. Order now from FoodHub!", - siteName: "FoodHub", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/closeup-shot-restaurant-menu-set-black-plates-perfect-food-background_181624-58554.jpg", - alt: "FoodHub - Food Delivery Service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "FoodHub - Order Food Online", - description: "Fast, fresh, and delicious food delivery. Browse 500+ restaurants and order now!", - images: ["http://img.b2bpic.net/free-photo/closeup-shot-restaurant-menu-set-black-plates-perfect-food-background_181624-58554.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +