From 34ea63f9f5314201a01be354f016f6b196e655a0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 11:35:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++++++++++-------------------------------- 1 file changed, 16 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4f37319..9507cd4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,29 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import { Analytics } from "@vercel/analytics/react"; export const metadata: Metadata = { - title: "Griddle - Bold Flavors, Affordable Meals in Badda, Dhaka", description: "Discover Griddle, the ultimate casual dining hangout in Badda, Dhaka. Order affordable rice bowls, grilled chicken, pasta & mocktails starting from ৳200. Popular with BRAC University students.", keywords: "restaurant Badda, rice bowl Dhaka, affordable restaurant, BRAC University food, casual dining Dhaka, grilled chicken, student friendly restaurant", metadataBase: new URL("https://griddle-restaurant.com"), - alternates: { - canonical: "https://griddle-restaurant.com"}, + title: "Griddle - Bold Flavors, Affordable Meals", description: + "Rice bowls, pasta, grilled chicken & mocktails near BRAC University. Order on Foodpanda or call 01331-402043.", metadataBase: new URL("https://griddle.com"), openGraph: { - title: "Griddle - Bold Flavors, Affordable Meals", description: "Order delicious rice bowls, grilled chicken & mocktails online on Foodpanda or call 01331-402043", url: "https://griddle-restaurant.com", siteName: "Griddle Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-psd/delicious-teriyaki-chicken-bowl-with-rice-fresh-salad_84443-64662.jpg", alt: "Griddle Restaurant - Bold Flavors"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Griddle - Bold Flavors, Affordable Meals in Badda", description: "Your favorite casual dining spot near BRAC University. Order now!", images: ["http://img.b2bpic.net/free-psd/delicious-teriyaki-chicken-bowl-with-rice-fresh-salad_84443-64662.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: "Griddle - Bold Flavors, Affordable Meals", description: + "Rice bowls, pasta, grilled chicken & mocktails near BRAC University. Order on Foodpanda or call 01331-402043."}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + + + + + {children} + +