diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1faae2e..4d335d7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Kick Cafe | Late-Night Coffee & Hangout in Ghatkopar East", description: "Your favorite late-night café in Ghatkopar East, Mumbai. Fresh coffee, delicious pasta, and chill vibes open till 1:30 AM. Call, reserve, or order online today!", keywords: "late night café Ghatkopar, coffee shop Mumbai, pasta café, hookah lounge, online ordering, table reservation", metadataBase: new URL("https://www.kickcafe.com"), - alternates: { - canonical: "https://www.kickcafe.com"}, - openGraph: { - title: "Kick Cafe | Late-Night Café in Ghatkopar East", description: "Coffee, pasta, snacks, and chill vibes open till 1:30 AM. Your neighborhood favorite!", url: "https://www.kickcafe.com", siteName: "Kick Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/friends-having-fun-together_23-2149290149.jpg", alt: "Kick Cafe - Your Late-Night Hangout"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Kick Cafe | Late-Night Café Ghatkopar", description: "Coffee, pasta & vibes till 1:30 AM. Call to reserve or order online!", images: ["http://img.b2bpic.net/free-photo/friends-having-fun-together_23-2149290149.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Kick Cafe | Late-Night Café in Ghatkopar", description: "Your favorite late-night café in Ghatkopar. Coffee, pasta, snacks, and chill vibes—open till 1:30 AM."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}