From 09d6ea752c1a77ebb79bd86999ce0d6ab172de9e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:49:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 10 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8a975b6..2a854b6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Sora } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"] -}); +const sora = Sora({ + subsets: ["latin"], + display: "swap", variable: "--font-sora"}); export const metadata: Metadata = { - title: "Adidas Premium Athletic Shoes | Performance Innovation", description: "Discover Adidas premium athletic shoes engineered for champions. Experience responsive cushioning, lightweight design, and precision fit for peak performance.", keywords: "adidas shoes, athletic footwear, running shoes, basketball sneakers, performance shoes, premium sportswear", robots: { - index: true, - follow: true - }, - openGraph: { - title: "Adidas Premium Athletic Shoes | Performance Innovation", description: "Discover Adidas premium athletic shoes engineered for champions. Experience responsive cushioning and precision fit.", type: "website", siteName: "Adidas", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-man-tying-her-shoelaces-before-exercising_23-2148891943.jpg", alt: "Adidas Premium Shoe Collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Adidas Premium Athletic Shoes", description: "Engineered for champions. Premium performance footwear.", images: ["http://img.b2bpic.net/free-photo/front-view-man-tying-her-shoelaces-before-exercising_23-2148891943.jpg"] - } -}; + title: "Adidas - Premium Athletic Footwear", description: "Experience innovation in motion. Discover the pinnacle of athletic footwear engineered for champions."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -