diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b64a463..8c2e156 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; +import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Famous d'cafe Naihati - Affordable Café for Friends & Couples", description: "Naihati's favorite affordable café. Delicious pasta, pizza, waffles, and more. Perfect for hangouts, couples, and birthdays. 4.6★ rating from 131+ customers.", keywords: "cafe in Naihati, affordable restaurant, couple-friendly cafe, pasta pizza waffles, party booking, reservation", metadataBase: new URL("https://famousdcafe.com"), - alternates: { - canonical: "https://famousdcafe.com"}, - openGraph: { - title: "Famous d'cafe - Your Favorite Affordable Café in Naihati", description: "Cozy cafe serving delicious pasta, pizza, and waffles at affordable prices. Perfect for dates, group hangouts, and celebrations.", url: "https://famousdcafe.com", siteName: "Famous d'cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg", alt: "Famous d'cafe Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Famous d'cafe - Naihati's Favorite Affordable Café", description: "Great pasta, pizza, waffles & friendly service at ₹200-400/person. Perfect for couples & groups!", images: ["http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Famous d'cafe - Naihati's Favorite Affordable Café", description: "Pasta • Pizza • Waffles • Cozy Vibes — Perfect for friends, couples, and celebrations"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}