From 303b03f29e88d7a063ce6431c05d617398f4f042 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:20:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1413 +------------------------------------------- 1 file changed, 16 insertions(+), 1397 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e412b83..830b2f5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,41 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "AYZERA - Luxury Streetwear Brand", description: "Premium minimal luxury streetwear for the discerning fashion enthusiast. Exclusive collections inspired by Amiri and Off-White. Shop AYZERA's curated apparel today.", keywords: "luxury streetwear, premium fashion, minimal design, exclusive apparel, high-end clothing, designer brand", metadataBase: new URL("https://ayzera.com"), - alternates: { - canonical: "https://ayzera.com"}, - openGraph: { - title: "AYZERA - Luxury Streetwear Redefined", description: "Explore exclusive premium streetwear collections. Bold design meets minimal luxury.", url: "https://ayzera.com", siteName: "AYZERA", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-dressed-white-posing-with-mirror-rocks_23-2149444982.jpg", alt: "AYZERA luxury streetwear collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AYZERA - Luxury Streetwear", description: "Premium minimal fashion. Exclusively designed. Expertly crafted.", images: ["http://img.b2bpic.net/free-photo/young-woman-dressed-white-posing-with-mirror-rocks_23-2149444982.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ayzera - Luxury Streetwear", description: "Discover Ayzera, a street luxury brand redefining contemporary fashion with warm, premium aesthetics and exclusive designs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - +