diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c5391da..c619990 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,22 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Inter_Tight } 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 inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const interTight = Inter_Tight({
- variable: "--font-inter-tight", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Café Coffee Day Coimbatore | Premium Coffee & Specialty Beverages", description: "Award-winning café on Race Course Road serving premium specialty coffee, cappuccinos, mochas, and more. Rated 4.1★ by 2,618+ customers. Order online via Swiggy or visit us today.", keywords: "café, coffee, cappuccino, Coimbatore, specialty coffee, café near me, premium beverages", metadataBase: new URL("https://cafecoffeeday.com/coimbatore"),
- alternates: {
- canonical: "https://cafecoffeeday.com/coimbatore"},
- openGraph: {
- title: "Café Coffee Day - Premium Coffee Experience in Coimbatore", description: "Discover excellence in every cup. Award-winning café with exceptional service, comfortable ambiance, and specialty beverages.", url: "https://cafecoffeeday.com/coimbatore", siteName: "Café Coffee Day", images: [
- {
- url: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-african-business-woman-wear-blue-blouse-skirt-sitting-cafe_627829-782.jpg", alt: "Café Coffee Day Premium Interior"},
- ],
- type: "website"},
- twitter: {
- card: "summary_large_image", title: "Café Coffee Day - Award-Winning Coffee in Coimbatore", description: "Experience premium specialty coffee crafted by passionate baristas. 4.1★ rated café on Race Course Road.", images: ["http://img.b2bpic.net/free-photo/portrait-beautiful-young-african-business-woman-wear-blue-blouse-skirt-sitting-cafe_627829-782.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Café Coffee Day - Premium Specialty Coffee", description: "Experience the finest specialty coffee crafted by passionate baristas. Award-winning café with premium seating and exceptional service."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-