Update src/app/layout.tsx

This commit is contained in:
2026-03-06 09:27:22 +00:00
parent 4ba3f78942
commit 8176110679

View File

@@ -7,48 +7,31 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Lalitha's Kitchen - Authentic Homemade Traditional Foods",
description: "Discover authentic homemade traditional foods from Lalitha's Kitchen. 100% natural ingredients, no preservatives, small batch production. Shop pickles, coconut oil, and more.",
keywords: "homemade foods, traditional pickles, organic coconut oil, Indian food, authentic recipes, ginger jaggery",
metadataBase: new URL("https://lalithaskitchen.com"),
title: "Lalitha's Kitchen - Authentic Homemade Traditional Foods", description: "Discover authentic homemade traditional foods from Lalitha's Kitchen. 100% natural ingredients, no preservatives, small batch production. Shop pickles, coconut oil, and more.", keywords: "homemade foods, traditional pickles, organic coconut oil, Indian food, authentic recipes, ginger jaggery", metadataBase: new URL("https://lalithaskitchen.com"),
alternates: {
canonical: "https://lalithaskitchen.com",
},
canonical: "https://lalithaskitchen.com"},
openGraph: {
title: "Lalitha's Kitchen - Grandma's Secret, Our Promise",
description: "Authentic homemade traditional foods with no artificial preservatives. Small batch production using natural ingredients.",
url: "https://lalithaskitchen.com",
siteName: "Lalitha's Kitchen",
type: "website",
images: [
title: "Lalitha's Kitchen - Grandma's Secret, Our Promise", description: "Authentic homemade traditional foods with no artificial preservatives. Small batch production using natural ingredients.", url: "https://lalithaskitchen.com", siteName: "Lalitha's Kitchen", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/preparing-sour-cucumbers-kitchen_329181-1302.jpg",
alt: "Lalitha's Kitchen - Homemade Foods",
},
url: "http://img.b2bpic.net/free-photo/preparing-sour-cucumbers-kitchen_329181-1302.jpg", alt: "Lalitha's Kitchen - Homemade Foods"},
],
},
twitter: {
card: "summary_large_image",
title: "Lalitha's Kitchen - Authentic Homemade Foods",
description: "Discover authentic homemade traditional foods with 100% natural ingredients.",
images: ["http://img.b2bpic.net/free-photo/preparing-sour-cucumbers-kitchen_329181-1302.jpg"],
card: "summary_large_image", title: "Lalitha's Kitchen - Authentic Homemade Foods", description: "Discover authentic homemade traditional foods with 100% natural ingredients.", images: ["http://img.b2bpic.net/free-photo/preparing-sour-cucumbers-kitchen_329181-1302.jpg"],
},
robots: {
index: true,
@@ -1440,4 +1423,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}