diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 17e47a6..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - -export const metadata: Metadata = { - title: "Nike Jordana Shoes | Premium Athletic Footwear", description: "Experience premium Nike Jordana shoes combining performance engineering with iconic design. Discover cushioning technology, style, and comfort for athletes worldwide.", keywords: "Nike Jordana, athletic shoes, basketball sneakers, premium footwear, sports shoes, performance cushioning, sneaker collection", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Nike Jordana: Performance Meets Legacy", description: "Premium athletic shoes designed for champions. Explore cushioning technology, versatile styles, and iconic design.", siteName: "Nike Jordana", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/a-premium-nike-jordana-shoe-in-golden-or-1773030534445-a488d760.png", alt: "Nike Jordana Premium Shoe Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nike Jordana: Performance Meets Legacy", description: "Premium athletic shoes designed for athletes and enthusiasts. Discover innovation, style, and comfort.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/a-premium-nike-jordana-shoe-in-golden-or-1773030534445-a488d760.png"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -