diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f8e5fac..5762a28 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -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 openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Profitable Fried Chicken Restaurant for Sale in Egypt | Investment Opportunity", - description: "Turn-key fried chicken restaurant for sale in Cairo. Established business, EGP 10.2M annual revenue, 35-40% net profit. Prime location, proven systems. Investor opportunity.", - keywords: "restaurant for sale Egypt, fast food business investment Egypt, fried chicken franchise Egypt, Cairo restaurant business", - metadataBase: new URL("https://www.elitichchickenegy.com"), - alternates: { - canonical: "https://www.elitichchickenegy.com", - }, - openGraph: { - title: "Elite Chicken Egypt - Profitable Restaurant Investment", - description: "Prime fast-food investment opportunity in Cairo. Established revenue model, strong unit economics, scalable operations.", - url: "https://www.elitichchickenegy.com", - siteName: "Elite Chicken Egypt", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/closeup-hamburgers-wooden-tray-with-blurred-background_181624-2322.jpg", - alt: "Elite Chicken Egypt Restaurant", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Profitable Fried Chicken Restaurant for Sale in Egypt", - description: "Investment-ready fast-food business with proven profitability and growth potential.", - images: ["http://img.b2bpic.net/free-photo/juicy-chicken-burger-with-fresh-lettuce-crispy-french-fries-wooden-board_181624-50895.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Elite Chicken Egypt - Investment Opportunity", description: "Profitable fried chicken restaurant for sale in Egypt. Prime location, established customer base, proven revenue model."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +