diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b461d76..3175b7d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "../styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mondo Coffee | Premium Artisan Coffee in Karachi", description: "Discover Mondo Coffee in DHA Phase 8, Karachi. Specialty lattes, espresso, and premium beverages. Order now and enjoy artisan coffee excellence.", keywords: "coffee shop Karachi, specialty coffee, latte, espresso, cold brew, matcha latte, DHA Phase 8", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Mondo Coffee | Premium Artisan Coffee", description: "Discover our handcrafted coffee beverages. Premium quality, customer satisfaction guaranteed. Order online now.", url: "https://mondocoffee.pk", siteName: "Mondo Coffee", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/italian-espresso-black-cup-coffee-breakfast-cup-fresh-coffee-coffee-beans-closeup_166373-1988.jpg", alt: "Mondo Coffee - Premium Espresso"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mondo Coffee | Premium Artisan Beverages", description: "Explore our signature coffee drinks. Specialty lattes, espresso, and more in Karachi.", images: ["http://img.b2bpic.net/free-photo/italian-espresso-black-cup-coffee-breakfast-cup-fresh-coffee-coffee-beans-closeup_166373-1988.jpg"], - }, -}; + title: "Mondo Coffee", description: "Premium artisan coffee crafted with precision"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -