diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 08c07a3..64e6eda 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Best Kitchen Gadgets & Tools on Amazon | Trusted Reviews", description: "Discover the best kitchen gadgets and tools on Amazon. Our honest reviews help you find quality products that improve your cooking. From knives to appliances, find what you need.", keywords: "best kitchen gadgets, kitchen tools, Amazon kitchen products, kitchen gadget reviews, must-have kitchen items, cooking tools", metadataBase: new URL("https://kitchenpicks.com"), - alternates: { - canonical: "https://kitchenpicks.com"}, - openGraph: { - title: "Best Kitchen Gadgets & Tools on Amazon", description: "Discover Amazon's best-rated kitchen gadgets reviewed by home cooks and culinary experts.", url: "https://kitchenpicks.com", siteName: "KitchenPicks", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/food-utensils_23-2147985288.jpg", alt: "modern kitchen gadgets flat lay"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Best Kitchen Gadgets & Tools on Amazon", description: "Find the perfect kitchen tools with our honest, tested recommendations.", images: ["http://img.b2bpic.net/free-photo/food-utensils_23-2147985288.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "KitchenPicks - Best Kitchen Tools & Gadgets", description: "Discover curated kitchen products tested and reviewed by experts. Find the best chef's knives, blenders, mixers, and gadgets on Amazon."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}