Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-17 02:39:29 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -14,7 +14,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TextAbout from '@/components/sections/about/TextAbout';
import { Award, CheckCircle, Instagram, Shield, Sparkles, Star, Twitter, Zap } from "lucide-react";
import { Award, CheckCircle, Sparkles, Star, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -100,7 +100,7 @@ export default function LandingPage() {
title: "Precision Recipe AI", description: "Personalized recipes that adjust quantities and techniques automatically.", media: { imageSrc: "http://img.b2bpic.net/free-photo/seafood-salad-with-crabsters-cherry-tomatoes_114579-1718.jpg?_wi=2" },
items: [
{ icon: Zap, text: "AI-Driven Adjustments" },
{ icon: Shield, text: "Dietary Constraint Control" },
{ icon: Award, text: "Dietary Constraint Control" },
],
reverse: false,
},
@@ -251,13 +251,23 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Cheff AI"
copyrightText="© 2025 Cheff AI Inc. All rights reserved."
socialLinks={[
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
<FooterSimple
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Careers", href: "#" },
],
},
{
title: "Resources", items: [
{ label: "Blog", href: "#" },
{ label: "Documentation", href: "#" },
],
},
]}
bottomLeftText="© 2025 Cheff AI Inc. All rights reserved."
bottomRightText="Made with Love"
/>
</div>
</ReactLenis>