From eff1ec7f3418523be07e5d0d122c3d2d1dc41966 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:08:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1431 +------------------------------------------- 1 file changed, 12 insertions(+), 1419 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2754aa8..5fd4cc2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Atithi Cloud Cafe | Best Coffee Shop in Guruvayankere", - description: "Atithi Cloud Cafe - Premium coffee, fresh snacks, and cozy ambiance in Guruvayankere, Dakshina Kannada. Rated 4.7★ by 124+ customers. Open 11 AM - 11 PM.", - keywords: "coffee shop Guruvayankere, cafe Dakshina Kannada, best coffee near me, specialty coffee shop, local cafe", - metadataBase: new URL("https://atithicafe.com"), - alternates: { - canonical: "https://atithicafe.com", - }, - openGraph: { - title: "Atithi Cloud Cafe - Your Favorite Coffee Spot", - description: "Experience premium coffee, delicious snacks, and cozy ambiance at Atithi Cloud Cafe in Guruvayankere.", - url: "https://atithicafe.com", - siteName: "Atithi Cloud Cafe", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Atithi Cloud Cafe | Best Coffee in Guruvayankere", - description: "Premium coffee & snacks. Rated 4.7★ by 124+ customers. Open 11 AM - 11 PM.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Atithi Cloud Cafe - Premium Coffee & Cozy Cafe Experience", description: "Your favorite coffee spot in Guruvayankere. Fresh coffee, delicious snacks, and a cozy atmosphere. Rated 4.7★ by 124+ happy customers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -