Merge version_2 into main #4

Open
bender wants to merge 2 commits from version_2 into main

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
@@ -39,34 +39,11 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
title="Master the Art of Cooking"
description="Join our interactive cooking courses and transform your kitchen skills with guided video tutorials and expert techniques from professional chefs."
testimonials={[
{ name: "Alice Smith", handle: "@aliceseats", testimonial: "I never thought I could make restaurant-quality pasta at home. This course changed everything!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg" },
{ name: "Bob Johnson", handle: "@bobcooks", testimonial: "The step-by-step videos are incredibly easy to follow. My family loves the new recipes.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-cooking-family_23-2149943875.jpg" },
{ name: "Carol White", handle: "@carolchef", testimonial: "Highly recommended for beginners and experienced home cooks alike. Truly comprehensive.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-women-eating-together_23-2149061571.jpg" },
{ name: "David Brown", handle: "@daveeats", testimonial: "The best culinary investment I've made. My knife skills have improved significantly!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/son-helping-father-kitchen_23-2148351720.jpg" },
{ name: "Eve Miller", handle: "@evecooks", testimonial: "The community support is fantastic. I feel so much more confident in the kitchen now.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg" }
]}
imageSrc="http://img.b2bpic.net/free-photo/portrait-working-woman-home-checks-her-notebook-flips-page-connects-online-meeting-via_1258-199630.jpg"
mediaAnimation="slide-up"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg", alt: "User 1" },
{ src: "http://img.b2bpic.net/free-photo/front-view-man-cooking-family_23-2149943875.jpg", alt: "User 2" },
{ src: "http://img.b2bpic.net/free-photo/close-up-women-eating-together_23-2149061571.jpg", alt: "User 3" },
{ src: "http://img.b2bpic.net/free-photo/son-helping-father-kitchen_23-2148351720.jpg", alt: "User 4" },
{ src: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg", alt: "User 5" }
]}
marqueeItems={[
{ type: "text", text: "Michelin Star Quality" },
{ type: "text", text: "Interactive Learning" },
{ type: "text", text: "Community Driven" },
{ type: "text", text: "Chef Mentorship" },
{ type: "text", text: "Professional Skills" }
]}
<HeroLogo
logoText="Learn to Cook"
description="Discover the joy of home cooking with our warm, inviting, and easy-to-follow lessons. Start your culinary journey today!"
buttons={[{ text: "Start Cooking", href: "#features" }]}
imageSrc="http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg?_wi=1"
/>
</div>
@@ -107,11 +84,11 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Elena R.", role: "Student", company: "Culinary Enthusiast", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg" },
{ id: "t1", name: "Elena R.", role: "Student", company: "Culinary Enthusiast", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg?_wi=2" },
{ id: "t2", name: "Mark S.", role: "Home Chef", company: "Food Blogger", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-cooking-family_23-2149943875.jpg" },
{ id: "t3", name: "Julia M.", role: "Professional", company: "Kitchen Pro", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-women-eating-together_23-2149061571.jpg" },
{ id: "t4", name: "Tom K.", role: "Learner", company: "Tech Professional", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/son-helping-father-kitchen_23-2148351720.jpg" },
{ id: "t5", name: "Sarah L.", role: "Foodie", company: "Home Kitchen", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg" }
{ id: "t5", name: "Sarah L.", role: "Foodie", company: "Home Kitchen", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-little-girl-baking-pastry-kitchen-breakfast_1303-20768.jpg?_wi=3" }
]}
kpiItems={[
{ value: "4.9/5", label: "Avg. Rating" },
@@ -151,4 +128,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}