Update src/app/layout.tsx

This commit is contained in:
2026-03-07 11:42:43 +00:00
parent a6f711dd6c
commit 61dd1a135c

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}