From 9840762dabc5a03d31660da59647a2e50d2837ae Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:55:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 69a2a6e..89d4fca 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DRXT - Premium Contemporary Clothing Brand", description: "Shop DRXT's curated collection of contemporary clothing. Premium quality, sustainable practices, and bold designs for the modern individual.", keywords: "clothing brand, fashion, streetwear, contemporary apparel, sustainable fashion, premium clothing", metadataBase: new URL("https://drxt.com"), - alternates: { - canonical: "https://drxt.com"}, - openGraph: { - title: "DRXT - Elevate Your Style", description: "Discover curated collections of contemporary clothing designed for the modern individual.", url: "https://drxt.com", siteName: "DRXT", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-black-spanish-male-friends-standing-front-blue-metal-gate_181624-57919.jpg", alt: "DRXT Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "DRXT - Premium Clothing Brand", description: "Elevate your style with our curated collection of contemporary clothing.", images: ["http://img.b2bpic.net/free-photo/young-black-spanish-male-friends-standing-front-blue-metal-gate_181624-57919.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "DRXT - Premium Fashion Collections", description: "Discover curated collections of contemporary clothing designed for the modern individual. Premium quality meets bold aesthetics."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}