Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e075cb32c2 | |||
| 61dd1a135c | |||
| a6f711dd6c | |||
| 7de3251b00 | |||
| c084824368 |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Public_Sans } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -50,7 +50,10 @@ export default function LandingPage() {
|
|||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
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"
|
buttonAnimation="slide-up"
|
||||||
carouselItems={[
|
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" },
|
{ 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" },
|
||||||
|
|||||||
Reference in New Issue
Block a user