diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ef3aaa..86ad718 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "FoodFlow - Fast Food Delivery Service", description: "Order from your favorite restaurants with FoodFlow. 30-minute delivery guarantee, 500+ partner restaurants, and real-time tracking. Download our app today!", keywords: "food delivery, restaurant delivery, fast food delivery, online food ordering", metadataBase: new URL("https://foodflow.com"), - alternates: { - canonical: "https://foodflow.com"}, - openGraph: { - title: "FoodFlow - Fast Food Delivery Service", description: "Order delicious food from 500+ restaurants with FoodFlow. 30-minute delivery guarantee!", url: "https://foodflow.com", siteName: "FoodFlow", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-with-beverage-using-smartphone-cafe_23-2147826810.jpg", alt: "FoodFlow food delivery service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "FoodFlow - Fast Food Delivery Service", description: "Order delicious food from your favorite restaurants. 30-minute delivery guarantee!", images: ["http://img.b2bpic.net/free-photo/man-with-beverage-using-smartphone-cafe_23-2147826810.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "FoodFlow - Fast Food Delivery", description: "Order from your favorite restaurants and enjoy delicious meals delivered fresh to your door in 30 minutes or less."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +