3 Commits

Author SHA1 Message Date
7751e8527c Update src/app/layout.tsx 2026-03-08 12:41:42 +00:00
5ed9a8c699 Update src/app/page.tsx 2026-03-08 12:40:44 +00:00
d1b69b19a1 Update src/app/layout.tsx 2026-03-08 12:40:43 +00:00

View File

@@ -1,58 +1,24 @@
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 "./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 Kitchen Tools & Cookware", description: "Premium culinary tools and cookware for passionate home chefs and professionals. Elevate your cooking experience with KitchenCraft."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<body className={`${inter.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1386,16 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
<script
dangerouslySetInnerHTML={{
__html: `
document.documentElement.style.setProperty('--vw', (window.innerWidth * 0.01) + 'px');
window.addEventListener('resize', () => {
document.documentElement.style.setProperty('--vw', (window.innerWidth * 0.01) + 'px');
});
`,
}}
/>
</html>
);
}