From e5a9be00126fab1c15cd7f8fafd72d9572c124e1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 21:55:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b761629..a85820a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Hollow District | Minimalist Sustainable Fashion", description: "Contemporary minimalist clothing celebrating simplicity, quality, and timeless style. Shop sustainable fashion pieces designed for those who value substance over trend.", keywords: "sustainable fashion, minimalist clothing, ethical apparel, timeless style, contemporary fashion", metadataBase: new URL("https://hollowdistrict.com"), - alternates: { - canonical: "https://hollowdistrict.com" - }, - openGraph: { - title: "Hollow District | Minimalist Sustainable Fashion", description: "Contemporary minimalist clothing celebrating simplicity, quality, and timeless style.", url: "https://hollowdistrict.com", siteName: "Hollow District", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-hands-holding-sweater_23-2149190431.jpg", alt: "Hollow District minimalist fashion collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Hollow District | Minimalist Sustainable Fashion", description: "Contemporary minimalist clothing for those who value quality over quantity.", images: ["http://img.b2bpic.net/free-photo/close-up-hands-holding-sweater_23-2149190431.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Hollow District - Minimalist Fashion", description: "Contemporary minimalist clothing that celebrates simplicity, sustainability, and timeless style."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}