From dd883adcf9c34ed0072884ae94c6e849da536662 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:07:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 8 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1704490..a82ebe2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,19 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; export const metadata: Metadata = { - title: "Cinema Cafe & Restaurant | Best Cafe in Vijayawada", description: "Best cafe & restaurant in Vijayawada. Fresh food, cozy ambiance, and exceptional service. ₹200-₹400 per person. Reserve table online or call 091707 07666.", keywords: "restaurant Vijayawada, cafe near LIC Colony, best cafe Vijayawada, biryani restaurant, Indian cuisine, food delivery Swiggy", metadataBase: new URL("https://cinemacafe.com"), - alternates: { - canonical: "https://cinemacafe.com"}, - openGraph: { - title: "Cinema Cafe & Restaurant - Vijayawada", description: "Experience the best dining in Vijayawada. Fresh food, cozy ambiance, perfect for families and friends. Reserve your table today!", url: "https://cinemacafe.com", siteName: "Cinema Cafe & Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/wine-glass_74190-3483.jpg", alt: "Cinema Cafe & Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Cinema Cafe & Restaurant - Vijayawada's Best Dining", description: "Fresh food, cozy cafe ambiance, exceptional service. ₹200-₹400 per person. 091707 07666", images: ["http://img.b2bpic.net/free-photo/wine-glass_74190-3483.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Cinema Cafe & Restaurant - Best Cafe in Vijayawada", description: "Experience the best cafe and restaurant in Vijayawada with delicious food, cozy ambiance, and premium service. Open daily 10 AM - 11 PM."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -