From 250d5cedfe08e9532814f1eaee76c8491e7dc153 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:58:14 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++------------------------------------- 1 file changed, 6 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba8b1f7..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Byanjan Thakali - Authentic Thakali Cuisine in Surkhet, Nepal", description: "Experience authentic Thakali cuisine at Byanjan Thakali in Birendranagar, Surkhet. Rated 4.8★. Traditional meals, fresh ingredients, warm hospitality. Open 9 AM - 9 PM daily. Call 970-5488833.", keywords: "Thakali food, Nepali cuisine, restaurant Surkhet, authentic food, traditional meals, Birendranagar", openGraph: { - title: "Byanjan Thakali - Authentic Thakali Cuisine", description: "Discover authentic Thakali cuisine in the heart of Surkhet. Rated 4.8★. Fresh ingredients, traditional recipes, warm hospitality.", siteName: "Byanjan Thakali", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/arrangement-different-pakistan-goodies_23-2148821571.jpg", alt: "Byanjan Thakali - Traditional Meal"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Byanjan Thakali - Authentic Thakali Cuisine", description: "Experience authentic Thakali food in Surkhet. 4.8★ rated. Open 9 AM - 9 PM.", images: ["http://img.b2bpic.net/free-photo/arrangement-different-pakistan-goodies_23-2148821571.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}