From 6be67fb797c61317b65d5a1aa8acfb58c5e12545 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:01:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5b81410..d40bfba 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 { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "HomeWish - Premium Furniture, Decor & Toys Shop", description: "Discover curated furniture, home decor, and quality toys at HomeWish. Transform your space with modern designs and exceptional quality.", keywords: "furniture, home decor, toys, home furnishings, interior design, modern furniture", metadataBase: new URL("https://homewish.com"), - alternates: { - canonical: "https://homewish.com"}, - openGraph: { - title: "HomeWish - Premium Furniture, Decor & Toys", description: "Curated collection of premium furniture, stylish home decor, and delightful toys.", url: "https://homewish.com", siteName: "HomeWish", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/interior-design-house-modern-wooden-chair_657883-341.jpg", alt: "HomeWish - Modern Furniture & Home Decor"}, - ], - }, - twitter: { - card: "summary_large_image", title: "HomeWish - Premium Furniture, Decor & Toys", description: "Transform your home with our curated collection of quality furniture and decor.", images: ["http://img.b2bpic.net/free-photo/interior-design-house-modern-wooden-chair_657883-341.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "HomeWish - Premium Furniture & Home Decor", description: "Discover premium furniture, stylish home decor, and delightful toys. Create your dream home with HomeWish."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}