From 3f954428129524c5f057d8a09a6881eeacc9eeca Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:19:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 64 +++++++++++++++++----------------------------- 1 file changed, 23 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 871a79f..bd926a8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,43 @@ 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"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +import { ServiceWrapper } from "@/components/service/ServiceWrapper"; 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"], }); export const metadata: Metadata = { - title: "HomeWare | Premium Kitchen & Home Accessories", description: "Discover premium kitchen and home accessories. Curated selection of quality cookware, dinnerware, and organizational solutions for modern living.", keywords: "kitchen accessories, home goods, cookware, dinnerware, kitchen tools, home decor, premium kitchenware", metadataBase: new URL("https://homeware.com"), - alternates: { - canonical: "https://homeware.com" - }, - openGraph: { - title: "HomeWare | Premium Kitchen & Home Accessories", description: "Elevate your kitchen and home with our curated collection of premium accessories. Quality, style, and functionality in every piece.", type: "website", siteName: "HomeWare", images: [ - { - url: "http://img.b2bpic.net/free-photo/slice-bread-with-oil-bottle-against-white-wall_23-2147853746.jpg", alt: "HomeWare premium kitchen accessories" - } - ] - }, - twitter: { - card: "summary_large_image", title: "HomeWare | Premium Kitchen & Home Accessories", description: "Discover premium kitchen and home accessories for modern living.", images: ["http://img.b2bpic.net/free-photo/slice-bread-with-oil-bottle-against-white-wall_23-2147853746.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "HomeWare - Premium Kitchen & Home Accessories", description: "Discover our curated collection of premium kitchen and home accessories designed for modern living. Quality, style, and functionality in every piece."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + +