From f4d4adbe3d2347f9193f721786e82ea3d97d4299 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 05:26:34 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1425 -------------------------------------------- 1 file changed, 1425 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6bd80ca..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Surya Supermarket & Wine Store | Taleigao, Goa", description: "Your trusted local grocery and wine store in Taleigao, Goa. Fresh groceries, Indian food items, household essentials, and quality wine. Call +91 98765 43210. Open daily.", keywords: "grocery store Taleigao, Indian grocery Goa, wine store Taleigao, supermarket near me, local store Goa", metadataBase: new URL("https://suryasupermarket.com"), - alternates: { - canonical: "https://suryasupermarket.com"}, - openGraph: { - title: "Surya Supermarket & Wine Store | Fresh Groceries & Wine in Taleigao", description: "Visit Surya Supermarket & Wine Store in Taleigao, Goa for fresh groceries, Indian food items, household essentials, and premium wines. 4.5★ rated by 22 customers.", url: "https://suryasupermarket.com", siteName: "Surya Supermarket & Wine Store", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-women-shopping-groceries_23-2149461750.jpg", alt: "Surya Supermarket storefront in Taleigao, Goa"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Surya Supermarket & Wine Store", description: "Fresh groceries, household essentials, and quality wine in Taleigao, Goa. Call +91 98765 43210.", images: ["http://img.b2bpic.net/free-photo/side-view-women-shopping-groceries_23-2149461750.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -