Update src/app/layout.tsx

This commit is contained in:
2026-03-07 12:11:17 +00:00
parent 8e9862032c
commit 90b11bcc32

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${inter.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}