Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 11:42:49 +00:00
2 changed files with 12 additions and 47 deletions

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>
);
}

View File

@@ -11,7 +11,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Sparkles, TrendingUp, Award, CheckCircle, Utensils, ChefHat, Heart } from 'lucide-react';
import { Sparkles, TrendingUp, Award, CheckCircle, Utensils, ChefHat, Heart, BarChart3 } from 'lucide-react';
export default function LandingPage() {
return (
@@ -50,7 +50,10 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "plain" }}
buttons={[{ text: "View Top Picks on Amazon", href: "https://www.amazon.com" }]}
buttons={[
{ text: "View Top Picks on Amazon", href: "https://www.amazon.com" },
{ text: "Compare Top 10", href: "#featured" }
]}
buttonAnimation="slide-up"
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/roasted-pumpkin-carrot-soup-with-cream-black-pepper-pumpkin-seeds-cutting-board-fresh-pumpkin-slices-black-bread_114579-1708.jpg?_wi=1" },