From ebb1c545dc4884ddeb6289076680a50b2377840b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 17:11:50 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4721bde..74199bd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -81,7 +81,7 @@ export default function AboutPage() { description="At Sam's Kitchen, we believe convenience shouldn't compromise quality. Our chef-prepared frozen meals are made with premium ingredients, flash-frozen at peak freshness to lock in nutrition and flavor. Perfect for busy professionals, growing families, and meal-prep enthusiasts." tag="Our Story" tagIcon={Heart} - imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-food-concept_23-2148478172.jpg" + imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-food-concept_23-2148478172.jpg?_wi=2" imageAlt="Professional kitchen preparation" useInvertedBackground={true} buttons={[ @@ -106,21 +106,21 @@ export default function AboutPage() { { title: "Premium Sourcing", description: "We partner with trusted suppliers who share our commitment to quality. Every ingredient is selected for freshness, nutrition, and flavor.", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-raw-vegetables-composition_23-2148643061.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-raw-vegetables-composition_23-2148643061.jpg?_wi=2", imageAlt: "Quality ingredient selection", buttonIcon: Award, }, { title: "Expert Preparation", description: "Our team of professional chefs craft each meal with precision. We respect traditional cooking methods while embracing modern food science.", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-concept_23-2148478172.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-concept_23-2148478172.jpg?_wi=3", imageAlt: "Expert meal preparation", buttonIcon: Heart, }, { title: "Nutritional Excellence", description: "Every meal is formulated for balanced macros and micronutrients. We believe great food should nourish your body and delight your taste buds.", - imageSrc: "http://img.b2bpic.net/free-photo/women-preparing-healthy-meals-high-angle_23-2149894883.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/women-preparing-healthy-meals-high-angle_23-2149894883.jpg?_wi=2", imageAlt: "Nutritious meal composition", buttonIcon: Leaf, }, -- 2.49.1 From 226fce76ad523b49d5db86a3f1550e14f58cdccf Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 17:11:50 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..87971af 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Nunito } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Sam's Kitchen - Premium Frozen Meals Delivered", + description: "Discover chef-prepared frozen meals delivered to your door. Convenient, nutritious, and delicious. Shop Sam's Kitchen premium collection today.", + keywords: "frozen meals, premium food, meal delivery, healthy frozen food, convenience meals", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Sam's Kitchen - Fresh Frozen Meals, Ready When You Are", + description: "Premium frozen meal collection. Nutritious, chef-prepared dishes delivered to your door.", + type: "website", + siteName: "Sam's Kitchen", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-cucumber-vegetables_23-2148478176.jpg", + alt: "Sam's Kitchen Premium Frozen Meals", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sam's Kitchen - Premium Frozen Meals", + description: "Chef-prepared meals delivered. Convenient, quality, nutrition.", + images: ["http://img.b2bpic.net/free-photo/top-view-cucumber-vegetables_23-2148478176.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}