From 69b64e3e5b6c17620b16e4833ee6bc1c71b1fb87 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:14:32 +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 688696a..941e04b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Leather Belts | BeltCo - Handcrafted Quality", description: "Discover premium handcrafted leather belts designed for style and durability. 100% genuine leather with lifetime warranty. Shop our exclusive collection today.", keywords: "leather belts, premium belts, handcrafted belts, men's belts, quality leather, belt shop, designer belts", metadataBase: new URL("https://beltco.com"), - alternates: { - canonical: "https://beltco.com" - }, - openGraph: { - title: "Premium Leather Belts | BeltCo", description: "Discover handcrafted leather belts with timeless style and exceptional durability.", url: "https://beltco.com", siteName: "BeltCo", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/hipster-style-bearded-man_158595-708.jpg", alt: "Premium leather belt collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Premium Leather Belts | BeltCo", description: "Handcrafted leather belts designed to last a lifetime.", images: ["http://img.b2bpic.net/free-photo/hipster-style-bearded-man_158595-708.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "BeltCo - Premium Leather Belts", description: "Discover our exclusive collection of handcrafted leather belts designed for the discerning gentleman."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}