From 0c586a685f9b5bc93a516d2cc3489c2ab01cd717 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:10:25 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a82ebe2..d7cbd22 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,16 @@ import type { Metadata } from "next"; +import { Inter_Tight } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export const metadata: Metadata = { - 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."}; + 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, @@ -12,7 +19,7 @@ export default function RootLayout({ }) { return ( - + {children}