From cf5bc02873bb6c5992d63494b177c361b6e16a38 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:21:49 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++---------------------------------------- 1 file changed, 5 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4e20551..22b84e1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - export const metadata: Metadata = { - title: "Artha Coffee & Co. | Premium Coffee Shop in Vijayapura", description: "Discover premium handcrafted coffee at Artha Coffee & Co. in Vijayapura. 4.4★ rated cafe with cozy ambiance, specialty drinks, and Instagram-worthy moments.", keywords: "premium coffee shop, specialty coffee, espresso, cappuccino, cafe Vijayapura, coffee delivery, cozy cafe", metadataBase: new URL("https://artha-coffee.com"), - openGraph: { - title: "Artha Coffee & Co. | Premium Coffee Experience", description: "Where every cup tells a story. Premium coffee crafted for moments that matter.", siteName: "Artha Coffee & Co.", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-barista-preparing-drink_23-2148865580.jpg", alt: "Premium Coffee at Artha Coffee & Co."}, - ], - }, - twitter: { - card: "summary_large_image", title: "Artha Coffee & Co. | Premium Coffee Shop", description: "Handcrafted coffee, cozy vibes, unforgettable experiences. Visit us in Kulloli Plaza, Vijayapura.", images: ["http://img.b2bpic.net/free-photo/close-up-barista-preparing-drink_23-2148865580.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "KBC - North Indian Restaurant in Vijayapura", description: "Experience authentic North Indian cuisine at KBC. Premium butter chicken, paneer butter masala, tandoori specialties, and traditional biryani in Vijayapura."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}