diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6a5b9f9..fd3750d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "365 The Travel Cafe | Cozy Cafe in Surat", description: "Discover 365 The Travel Cafe in Surat—a travel-inspired cafe with specialty coffee, ambiance perfect for dates, work, and hangouts with friends. Reserve your spot today.", keywords: "cafe in Surat, coffee shop, travel-themed cafe, cozy ambiance, specialty coffee, workspace cafe", metadataBase: new URL("https://365travelcafe.com"), - alternates: { - canonical: "https://365travelcafe.com" - }, - openGraph: { - title: "365 The Travel Cafe | Your Next Favorite Destination", description: "Step into 365 The Travel Cafe—where cozy ambiance, specialty coffee, and travel-inspired vibes meet in Surat's heart.", url: "https://365travelcafe.com", siteName: "365 The Travel Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/breakfast-wooden-table-with-natural-view_53876-139869.jpg", alt: "365 The Travel Cafe ambiance" - } - ] - }, - twitter: { - card: "summary_large_image", title: "365 The Travel Cafe | Cozy Cafe in Surat", description: "Discover the perfect cafe for dates, work, and hangouts. Specialty coffee and travel-inspired vibes await.", images: ["http://img.b2bpic.net/free-photo/breakfast-wooden-table-with-natural-view_53876-139869.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "365 The Travel Cafe", description: "Your next favorite travel destination awaits"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +