4 Commits

Author SHA1 Message Date
f26a1791be Update src/app/page.tsx 2026-04-08 14:53:01 +00:00
7c7daeaaf2 Merge version_1 into main
Merge version_1 into main
2026-04-08 14:50:51 +00:00
4191e05a6c Merge version_1 into main
Merge version_1 into main
2026-04-08 14:50:22 +00:00
1931782bad Merge version_1 into main
Merge version_1 into main
2026-04-08 14:49:44 +00:00

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
@@ -47,47 +47,18 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
<HeroSplit
title="Crispy Perfection in Every Bite"
description="Experience the crunch of hand-crafted chips made from the finest farm-fresh potatoes. Discover flavors that redefine snack time."
testimonials={[
{
name: "Elena R.", handle: "@elena_snack", testimonial: "These are hands down the crunchiest chips I have ever tried. Absolutely addictive!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/spicy-potato-chips-bowl-yogurt-glass-marble-table_114579-89554.jpg?_wi=1", imageAlt: "gourmet potato chips bowl wood table"},
{
name: "Mark D.", handle: "@mark_eats", testimonial: "Quality is unmatched. You can actually taste the farm-fresh ingredients in every bag.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cooking-caucasian-khinkali-kitchen_114579-12063.jpg?_wi=1", imageAlt: "fresh potato field harvest"},
{
name: "Sophie K.", handle: "@sophie_snack", testimonial: "Perfectly seasoned and the texture is amazing. My pantry is never without these.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-potato-chips-cheesy-puffs_23-2148562637.jpg?_wi=1", imageAlt: "bag of gourmet sea salt chips"},
{
name: "David W.", handle: "@david_foods", testimonial: "Finally, a snack that doesn't compromise on quality or flavor. Truly premium.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/view-homemade-delicious-potato-crispy-chips-small-brown-bowl-oil-bottle-green-tomatoes-ketchup-dark-table_140725-139639.jpg?_wi=1", imageAlt: "spicy chili flavored potato chips"},
{
name: "Sarah J.", handle: "@sarah_j", testimonial: "The truffle flavor is divine! Highly recommend trying the whole range.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-cone-shape-fried-corn-snacks-bucket-sack-cloth-wooden-table-with-copy-space_141793-88868.jpg?_wi=1", imageAlt: "barbecue flavored potato chips"},
]}
background={{ variant: 'sparkles-gradient' }}
buttons={[
{
text: "Shop Now", href: "#products"},
{
text: "Learn More", href: "#about"},
{ text: "Shop Now", href: "#products" },
{ text: "Learn More", href: "#about" },
]}
imageSrc="http://img.b2bpic.net/free-photo/spicy-potato-chips-bowl-yogurt-glass-marble-table_114579-89554.jpg?_wi=2"
imageAlt="Artisanal potato chips bowl"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/celebration-party-holidays-concept-portrait-boyfriend-cant-resist-temptation-eat-last-piec_1258-111517.jpg", alt: "Customer 1"},
{
src: "http://img.b2bpic.net/free-photo/close-up-young-handsome-man-isolated_273609-35810.jpg", alt: "Customer 2"},
{
src: "http://img.b2bpic.net/free-photo/young-hispanic-girl-holding-take-away-paper-bag-smiling-happy-positive-thumb-up-doing-excellent-approval-sign_839833-21291.jpg", alt: "Customer 3"},
{
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-food_23-2149536952.jpg", alt: "Customer 4"},
{
src: "http://img.b2bpic.net/free-photo/headshot-joyful-european-woman-with-curly-hair-holds-delicious-waffle-cookie-enjoys-eating-homemade-desserts-exclaims-from-happiness-wears-casual-t-shirt-isolated-pink-background_273609-62625.jpg", alt: "Customer 5"},
]}
avatarText="Join 10,000+ happy snackers"
className="bg-[#f6f0e9]"
containerClassName="py-20"
/>
</div>
@@ -206,4 +177,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}