From 4e652de2c1436830a8c790b509c3b7bdf523b17b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 00:49:07 +0000 Subject: [PATCH 1/5] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6713378..518fd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,18 +6,48 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "FoodHub - Order Food Online from Your Favorite Restaurants", + description: "Discover restaurants, browse detailed menus with real-time pricing, and place secure online orders. Fast delivery, transparent costs, and a seamless dining experience.", + keywords: "online food ordering, restaurant delivery, menu prices, food app, dining platform", + openGraph: { + title: "FoodHub - Discover & Order Food Online", + description: "Browse restaurants, check menus and prices, and order food for delivery with FoodHub.", + url: "https://foodhub.com", + siteName: "FoodHub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/restaurant-table-14-persons-restaurant-hall-with-brick-walls-wide-windows-wood-ceiling_140725-8457.jpg", + alt: "FoodHub - Restaurant ordering platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "FoodHub - Order Food Online", + description: "Discover restaurants and order your favorite meals with transparent pricing.", + images: [ + "http://img.b2bpic.net/free-photo/restaurant-table-14-persons-restaurant-hall-with-brick-walls-wide-windows-wood-ceiling_140725-8457.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -26,7 +56,9 @@ export default function RootLayout({ return ( - + {children}