diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ac92cf..15d2370 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Animal Park - Pet Store | Premium Pet Products & Care", - description: "Everything your pet needs in one place. Shop premium dog food, cat products, toys, accessories, and pet hygiene items at Animal Park pet store.", - keywords: "pet store, dog food, cat food, pet toys, pet accessories, pet care, animal supplies", - metadataBase: new URL("https://animalpark.com"), - alternates: { - canonical: "https://animalpark.com", - }, - openGraph: { - title: "Animal Park - Your Trusted Pet Store", - description: "Premium pet products and care supplies for dogs, cats, and small animals.", - type: "website", - siteName: "Animal Park", - images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-with-her-best-friend-park_23-2148345910.jpg", - alt: "Animal Park Pet Store", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Animal Park - Pet Store", - description: "Everything your pet needs in one place", - images: ["http://img.b2bpic.net/free-photo/woman-with-her-best-friend-park_23-2148345910.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Animal Park", description: "Everything your pet needs in one place"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -