diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cd2931e..498a746 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1436 +1,50 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Tag } from "@/components/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Exotic Pets - Premium Snakes, Turtles & Macaws", - description: "Discover premium exotic animals including rare snakes, turtles, and macaws. Health-certified, ethically sourced. Expert care and lifetime support.", - keywords: "exotic animals, snakes for sale, turtles, macaws, rare reptiles, exotic pets", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Exotic Pets - Premium Animals Selection", - description: "Explore our curated collection of exotic snakes, turtles, and macaws. Health-certified and professionally cared for.", - url: "https://exoticpets.com", - siteName: "Exotic Pets", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-pattern-scales_23-2151365729.jpg", - alt: "Exotic animals collection", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Exotic Pets - Premium Animals", - description: "Discover rare snakes, turtles, and macaws with health certification and expert support.", - images: ["http://img.b2bpic.net/free-photo/scarlet-macaw-ara-macao-flying-through-sky-big-parrots-flying-formation-sky_488145-1169.jpg"], - }, -}; + title: "Exotic Pets - Premium Exotic Animals", description: "Discover ethically sourced, health-certified exotic animals including snakes, turtles, and macaws. Expert care and lifetime support."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - +