From 326d6664372b77d98833f9f31bf4fe216fe22d36 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:57:29 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 38 ++++++-------------------------------- 1 file changed, 6 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d006065..5a26760 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Cravings Late Night Food | Air Ronge's Best Late-Night Burgers", description: "Premium late-night restaurant in Air Ronge, SK. Fresh 8oz beef burgers, bannock specials, Indian tacos & wings. Open 4-10pm. Order online or visit us today.", keywords: "late night food, burgers, bannock burger, Air Ronge restaurant, takeaway, delivery, wings, Indian taco", openGraph: { - title: "Cravings Late Night Food - Premium Late-Night Dining", description: "Discover Air Ronge's favorite late-night restaurant. Fresh burgers, bannock specials, and comfort food.", url: "https://cravingslatenight.ca", siteName: "Cravings Late Night Food", type: "website"}, - twitter: { - card: "summary_large_image", title: "Cravings Late Night Food", description: "Air Ronge's best late-night burgers and wings. Open till 10pm."}, -}; + title: "Cravings Late Night Food", description: "Late-night burgers, bannock specials, and comfort food in Air Ronge"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}