3 Commits

Author SHA1 Message Date
d08685dbeb Update src/app/page.tsx 2026-04-26 07:55:01 +00:00
2e23e85811 Update src/app/page.tsx 2026-04-26 07:52:48 +00:00
996048731c Merge version_3 into main
Merge version_3 into main
2026-04-26 07:52:48 +00:00

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
background={{
variant: "gradient-bars"}}
title="Your AI Kitchen Partner"
description="Reduce food waste by 22% and labor costs by 35% within 90 days with ChefAI, the intelligent assistant built for professional kitchen management."
description="Revolutionize your culinary precision with ChefAIthe intelligent assistant built for professional kitchens, recipe mastery, and workflow optimization."
testimonials={[
{
name: "Chef Marco", handle: "@marco_culinary", testimonial: "ChefAI has fundamentally changed how we manage inventory and recipe costs. Unmatched precision.", rating: 5,
@@ -147,25 +147,35 @@ export default function LandingPage() {
products={[
{
id: "p1", brand: "ChefAI", name: "Precision Smart Scale", price: "$199", rating: 5,
reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/male-vegetable-seller-packing-vegetable-customer-market_23-2148209848.jpg"},
reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/male-vegetable-seller-packing-vegetable-customer-market_23-2148209848.jpg", onProductClick: () => window.location.href = '#contact'
},
{
id: "p2", brand: "ChefAI", name: "Kitchen Tech Tablet Case", price: "$79", rating: 4,
reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/authentic-woman-using-handheld-mixer_158595-5629.jpg"},
reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/authentic-woman-using-handheld-mixer_158595-5629.jpg", onProductClick: () => window.location.href = '#contact'
},
{
id: "p3", brand: "ChefAI", name: "Pro Temp Sensor", price: "$129", rating: 5,
reviewCount: "215", imageSrc: "http://img.b2bpic.net/free-photo/home-automation-with-water-boiler-device_23-2148994135.jpg"},
reviewCount: "215", imageSrc: "http://img.b2bpic.net/free-photo/home-automation-with-water-boiler-device_23-2148994135.jpg", onProductClick: () => window.location.href = '#contact'
},
{
id: "p4", brand: "ChefAI", name: "Enterprise AI License", price: "$49/mo", rating: 5,
reviewCount: "540", imageSrc: "http://img.b2bpic.net/free-photo/nutrition-facts-comparison-food-dietery_53876-123817.jpg"},
reviewCount: "540", imageSrc: "http://img.b2bpic.net/free-photo/nutrition-facts-comparison-food-dietery_53876-123817.jpg", onProductClick: () => window.location.href = '#contact'
},
{
id: "p5", brand: "ChefAI", name: "Smart Label Printer", price: "$299", rating: 4,
reviewCount: "75", imageSrc: "http://img.b2bpic.net/free-photo/woman-grating-cheese-pasta-meal_176474-6819.jpg"},
reviewCount: "75", imageSrc: "http://img.b2bpic.net/free-photo/woman-grating-cheese-pasta-meal_176474-6819.jpg", onProductClick: () => window.location.href = '#contact'
},
{
id: "p6", brand: "ChefAI", name: "Vision Sensor Camera", price: "$349", rating: 5,
reviewCount: "104", imageSrc: "http://img.b2bpic.net/free-photo/photographing-frying-pan_23-2147959007.jpg"},
reviewCount: "104", imageSrc: "http://img.b2bpic.net/free-photo/photographing-frying-pan_23-2147959007.jpg", onProductClick: () => window.location.href = '#contact'
},
]}
title="Essential Culinary Tools"
description="Hardware and software packages to modernize your kitchen setup."
buttons={[
{ text: "View Specifications", href: "#products" },
{ text: "Request Pricing", href: "#contact" }
]}
/>
</div>
@@ -279,4 +289,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}