From cc2a2343c7ca66ceac2fa8f9684b4d4c2151244a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 09:02:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 6 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 98def88..1b243a8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +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: "SSK Pet Shop - Premium Pet Care & Supplies", description: "Premium pet grooming, veterinary care, training, and supplies. Visit SSK Pet Shop for trusted pet care services. Call +91 90298 86897.", keywords: "pet shop, pet grooming, veterinary care, pet training, pet supplies, pet boarding", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SSK Pet Shop - Your Trusted Pet Care Partner", description: "Premium pet care services and supplies for all your pet needs", type: "website", siteName: "SSK Pet Shop", images: [ - { - url: "http://img.b2bpic.net/free-photo/mother-her-daughter-playing-with-dog-family-autumn-park-pet-domestic-animal-lifestyle-concept_1157-42377.jpg", alt: "happy pets playing together outdoor"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SSK Pet Shop - Premium Pet Care", description: "Quality pet grooming, veterinary care, and supplies", images: [ - "http://img.b2bpic.net/free-photo/mother-her-daughter-playing-with-dog-family-autumn-park-pet-domestic-animal-lifestyle-concept_1157-42377.jpg"], - }, -}; + title: "SSK Pet Shop", description: "Premium pet care, grooming, and supplies for your beloved companions"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -