From 493b8818619dec5c817801e8bacae46196c4a323 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:00:07 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb1b423..7ea18a1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TANTAWY - Premium Fashion & Clothing Brand", description: "Discover TANTAWY's exclusive collection of premium, timeless clothing designed for the modern individual. Quality craftsmanship and elegant styles.", keywords: "fashion, clothing, premium fashion, designer clothes, elegant wear, women fashion", metadataBase: new URL("https://tantawy.com"), - alternates: { - canonical: "https://tantawy.com"}, - openGraph: { - title: "TANTAWY - Premium Fashion & Clothing Brand", description: "Discover our exclusive collection of premium, timeless clothing designed for the modern individual.", url: "https://tantawy.com", siteName: "TANTAWY", type: "website"}, - twitter: { - card: "summary_large_image", title: "TANTAWY - Premium Fashion & Clothing Brand", description: "Discover TANTAWY's exclusive collection of premium clothing and fashion."}, - robots: { - index: true, - follow: true, - }, -}; + title: "TANTAWY - Premium Fashion Brand", description: "Discover exclusive, premium clothing designed for the modern, confident individual"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}