diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 897f1c2..200c26c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,28 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Fryco Bangladesh | Premium Fast Food & Café Experience", description: "Discover crispy fries, juicy burgers, and refreshing smoothies at Fryco Bangladesh. Premium fast-food café with cozy atmosphere and friendly service.", keywords: "fast food, burgers, fries, chicken wings, café, Bangladesh, premium dining", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Fryco Bangladesh | Crispy. Juicy. Irresistible.", description: "Experience premium fast food and café excellence at Fryco Bangladesh.", type: "website", siteName: "Fryco Bangladesh", images: [ - { - url: "http://img.b2bpic.net/free-photo/fried-potatoes-french-fries-wooden-table_123827-26888.jpg", alt: "Fryco Bangladesh premium food experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fryco Bangladesh | Premium Fast Food", description: "Crispy fries, juicy burgers, and refreshing drinks await you at Fryco.", images: ["http://img.b2bpic.net/free-photo/fried-potatoes-french-fries-wooden-table_123827-26888.jpg"], - }, -}; + title: "Fryco Bangladesh", description: "Premium fast-food café with crispy fries, juicy burgers, and refreshing drinks."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +