diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ec51b5a..af29fc4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,25 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "AirPods - Premium Wireless Audio Experience", description: "Discover AirPods Pro, Max, and more. Premium wireless audio with active noise cancellation, spatial audio, and seamless Apple ecosystem integration.", keywords: "AirPods, wireless earbuds, premium audio, active noise cancellation, spatial audio, Apple audio", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "AirPods - Premium Wireless Audio Experience", description: "Experience the next generation of wireless audio with AirPods. Premium sound, instant setup, and seamless connectivity.", siteName: "AirPods", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/a-sleek-premium-product-shot-of-airpods--1772884352155-5b47d23f.png", alt: "AirPods Pro Premium Audio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AirPods - Premium Wireless Audio", description: "Discover AirPods Pro, Max, and more. Premium audio experience starts here.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/a-sleek-premium-product-shot-of-airpods--1772884352155-5b47d23f.png"], - }, -}; + title: "PodsX - Premium Wireless Audio", description: "Experience the future of wireless audio with PodsX. Premium sound, seamless connectivity, and industry-leading features."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +