From 47adbd5193c0345a4efac4f52c2dc46e1f903027 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 02:20:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++------------------------------------ 1 file changed, 13 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4e85631..f70af7a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "AirPods | Premium Wireless Audio Experience", description: "Discover the latest AirPods with active noise cancellation, seamless connectivity, and all-day battery life. Shop now and elevate your audio experience.", keywords: "AirPods, wireless earbuds, noise cancellation, Apple audio, premium headphones", metadataBase: new URL("https://airpods.example.com"), - alternates: { - canonical: "https://airpods.example.com" - }, - openGraph: { - title: "AirPods | Premium Wireless Audio", description: "Experience revolutionary sound with AirPods. Active noise cancellation, seamless device integration, and exceptional battery life.", url: "https://airpods.example.com", siteName: "AirPods", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYIrTQgAvZYRcrdXmGXvMkx0Fy/premium-airpods-product-on-a-minimalist--1772763347326-e6e5a147.png", alt: "AirPods Premium Audio" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "AirPods | Premium Wireless Audio", description: "Discover cutting-edge audio technology with AirPods. Shop now for the perfect listening experience.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYIrTQgAvZYRcrdXmGXvMkx0Fy/premium-airpods-product-on-a-minimalist--1772763347326-e6e5a147.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +