diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 16177f4..546c1cc 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Cafex - Premium Coffee & Café in Dehradun", description: "Discover Cafex, Dehradun's favorite café. Authentic coffee, specialty beverages, cozy ambiance. Visit us on Rajpur Road for the perfect coffee experience.", keywords: "café in Dehradun, coffee shop, specialty coffee, hazelnut latte, KitKat shake, Vietnamese coffee, Rajpur Road café", metadataBase: new URL("https://cafexdehradun.com"), - alternates: { - canonical: "https://cafexdehradun.com"}, - openGraph: { - title: "Cafex - Premium Coffee & Café in Dehradun", description: "Experience authentic coffee and cozy moments at Cafex. Premium beverages, friendly service, and welcoming atmosphere.", url: "https://cafexdehradun.com", siteName: "Cafex", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2397.jpg", alt: "Cafex - Premium Café Experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Cafex - Premium Coffee & Café in Dehradun", description: "Your go-to café for authentic coffee and cozy vibes", images: ["http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2397.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Cafex - Authentic Coffee Experience", description: "Welcome to Cafex—where passion for coffee meets cozy comfort. Experience expertly crafted beverages, premium quality ingredients, and the perfect atmosphere."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +