From 84a33e33364971063ca86f4816f16e34bac4fd31 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:40:51 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++-------------------------------- 1 file changed, 18 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f139498..eee762b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,36 @@ 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 "./styles/variables.css"; 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "KitchenCraft | Premium Kitchen Tools & Cookware", description: "Discover premium culinary tools and cookware from KitchenCraft. Professional-grade kitchen equipment trusted by chefs worldwide. Shop now.", keywords: "kitchen tools, cookware, chef knives, premium kitchen equipment, culinary tools, cooking gear", metadataBase: new URL("https://kitchencraft.com"), - alternates: { - canonical: "https://kitchencraft.com"}, - openGraph: { - title: "KitchenCraft | Premium Kitchen Tools & Cookware", description: "Discover premium culinary tools and cookware from KitchenCraft. Professional-grade kitchen equipment trusted by chefs worldwide.", url: "https://kitchencraft.com", siteName: "KitchenCraft", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-man-cooking-home_23-2149943871.jpg", alt: "KitchenCraft Premium Kitchen Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "KitchenCraft | Premium Kitchen Tools & Cookware", description: "Professional-grade kitchen equipment trusted by chefs worldwide.", images: ["http://img.b2bpic.net/free-photo/front-view-man-cooking-home_23-2149943871.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "KitchenCraft - Premium Culinary Tools", description: "Discover premium kitchen tools and cookware for passionate home chefs and professionals."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +