From 1f0a2450f4e5e75228bb5d971f97e07041cfa34c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 06:00:09 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 877665f..3c4d7fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Minimal - Timeless Clothing Collection", description: "Discover minimalist, sustainable clothing designed for comfort and style. Shop our curated collection of quality essentials and statement pieces.", keywords: "minimal clothing, sustainable fashion, organic apparel, essentials collection", metadataBase: new URL("https://minimal.com"), - alternates: { - canonical: "https://minimal.com"}, - openGraph: { - title: "Minimal - Timeless Clothing Collection", description: "Discover minimalist, sustainable clothing designed for comfort and style.", type: "website", siteName: "Minimal", url: "https://minimal.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170139.jpg", alt: "minimalist clothing fashion collection model"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Minimal - Timeless Clothing Collection", description: "Shop sustainable, minimalist fashion for every moment.", images: ["http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170139.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Minimal - Timeless Clothing", description: "Discover our curated collection of minimalist apparel designed for comfort and style."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}