Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9dc6812218 | |||
| d96cb409d1 | |||
| f8fcb91431 |
498
src/app/page.tsx
498
src/app/page.tsx
@@ -2,431 +2,105 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import { Facebook, Flame, Instagram, Leaf, MapPin, Utensils } from "lucide-react";
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function GoodysLandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmall"
|
||||
background="circleGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="semibold"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="large"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Salento"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "All Star Club", id: "team" },
|
||||
{ name: "About", id: "about" },
|
||||
]}
|
||||
brandName="Goody's"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Authentic Wood Fired Street Food"
|
||||
description="Experience the true essence of Salento with our artisan wood-fired specialties, crafted with tradition and passion."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Marco Rossi",
|
||||
handle: "@marco_r",
|
||||
testimonial: "The best wood-fired pizza I've had outside of Italy. Truly authentic.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/halloween-outdoors-arrangement-with-caravan_23-2148670094.jpg?_wi=1",
|
||||
imageAlt: "wood fired pizza truck rustic",
|
||||
},
|
||||
{
|
||||
name: "Elena Bianchi",
|
||||
handle: "@elena_b",
|
||||
testimonial: "Incredible textures and flavors. A must-try street food experience!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg?_wi=1",
|
||||
imageAlt: "wood fired pizza truck rustic",
|
||||
},
|
||||
{
|
||||
name: "Luca Moretti",
|
||||
handle: "@lucam",
|
||||
testimonial: "Simply delicious. The wood-fire flavor is unmistakable.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vegetables-grey-wooden-surface_176420-6809.jpg?_wi=1",
|
||||
imageAlt: "wood fired pizza truck rustic",
|
||||
},
|
||||
{
|
||||
name: "Sofia Conti",
|
||||
handle: "@sofiac",
|
||||
testimonial: "Fantastic artisan quality on the go. Perfectly executed.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208291.jpg?_wi=1",
|
||||
imageAlt: "wood fired pizza truck rustic",
|
||||
},
|
||||
{
|
||||
name: "Giulia Ferrari",
|
||||
handle: "@giuliaf",
|
||||
testimonial: "Authentic, fresh, and exceptionally flavorful. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-banquet_23-2149893411.jpg?_wi=1",
|
||||
imageAlt: "wood fired pizza truck rustic",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/halloween-outdoors-arrangement-with-caravan_23-2148670094.jpg?_wi=2"
|
||||
imageAlt="Wood fired street food truck"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/full-shot-woman-van_23-2148939776.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235802.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134260.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/chef-kitchen-prepares-pizza_1157-21841.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-indigenous-person-integrated-into-modern-life_23-2151102574.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Artisan Craft",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Locally Sourced",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Street Food Legacy",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Wood-Fired Perfection",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Authentic Flavors",
|
||||
icon: Utensils,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Goody's Burger Joint"
|
||||
description="Savor the legendary Goody Burger. Freshly grilled, locally sourced, and made with love."
|
||||
buttons={[{ text: "View Our Menu", href: "#products" }]}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/front-view-burger-stand_23-2148227653.jpg"
|
||||
imageAlt="Goody Burger iconic shot"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Crafted with Tradition"
|
||||
description="At Salento Wood Fired Street Food, we honor old-world techniques. Using locally sourced ingredients and authentic wood-fired ovens, we bring the vibrant heart of Salento directly to the street, one slice at a time."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
title="Our Menu"
|
||||
description="From the classic Goody Burger to our signature hand-cut fries."
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "The Original Goody Burger", price: "$12.99", variant: "Classic", imageSrc: "https://img.b2bpic.net/free-photo/delicious-burger-with-fresh-ingredients_23-2148946765.jpg"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Goody Double Cheese", price: "$15.99", variant: "Double Patty", imageSrc: "https://img.b2bpic.net/free-photo/juicy-beef-burger-with-cheese-lettuce-tomato_23-2148946764.jpg"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "feat-1",
|
||||
title: "Farm to Table",
|
||||
author: "Chef Team",
|
||||
description: "We source all our ingredients from local farmers for maximum freshness.",
|
||||
tags: [
|
||||
"Fresh",
|
||||
"Organic",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vegetables-grey-wooden-surface_176420-6809.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "feat-2",
|
||||
title: "Traditional Ovens",
|
||||
author: "Chef Team",
|
||||
description: "Authentic wood-fired ovens ensure the unique smoky flavor in every bite.",
|
||||
tags: [
|
||||
"Artisan",
|
||||
"Tradition",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208291.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "feat-3",
|
||||
title: "Signature Crust",
|
||||
author: "Chef Team",
|
||||
description: "Our slow-fermentation dough guarantees a light, crispy, and flavorful crust.",
|
||||
tags: [
|
||||
"Crispy",
|
||||
"Delicious",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-banquet_23-2149893411.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Why Our Wood Fired Oven?"
|
||||
description="Our cooking method is more than just heat; it's an art form that transforms simple ingredients into culinary masterpieces."
|
||||
/>
|
||||
</div>
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
title="The All Star Club"
|
||||
description="Exclusive perks for our loyal burger enthusiasts. Join the Goody's family today!"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
groups={[
|
||||
{
|
||||
id: "club-1", groupTitle: "Member Benefits", members: [
|
||||
{ id: "mem-1", title: "Free Fries", subtitle: "Every Friday", detail: "Get a free side of fries with every burger order!" },
|
||||
{ id: "mem-2", title: "Birthday Treat", subtitle: "Special Day", detail: "A complimentary burger on your birthday!" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Signature",
|
||||
name: "Margherita Classica",
|
||||
price: "€12",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134263.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Signature",
|
||||
name: "Diavola Piccante",
|
||||
price: "€14",
|
||||
rating: 4,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assorted-meat-pizza-with-jamon-olives_501050-786.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Seasonal",
|
||||
name: "Salento Veggie",
|
||||
price: "€13",
|
||||
rating: 5,
|
||||
reviewCount: "92",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-pizza-with-parmesan-cheese-tomatoes_23-2148753755.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Signature",
|
||||
name: "Capricciosa Wood",
|
||||
price: "€15",
|
||||
rating: 5,
|
||||
reviewCount: "110",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-slices-with-cheese_23-2148601641.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Seasonal",
|
||||
name: "Four Formaggi",
|
||||
price: "€14",
|
||||
rating: 4,
|
||||
reviewCount: "75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134250.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Signature",
|
||||
name: "Pesto Delight",
|
||||
price: "€13",
|
||||
rating: 5,
|
||||
reviewCount: "68",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-cutting-pizza_23-2150317024.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Artisan Menu"
|
||||
description="Discover our signature wood-fired creations."
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
title="The Goody's Story"
|
||||
buttons={[]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardFive
|
||||
animationType="slide-up"
|
||||
textboxLayout="inline-image"
|
||||
useInvertedBackground={true}
|
||||
team={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Giovanni Rossi",
|
||||
role: "Head Pizzaiolo",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baker-woman-rolling-dough-home-infront-video-camera-explaining-recipe-step-by-step-retired-blogger-chef-influencer-using-internet-technology-communicating-social-media-with-digital-equipment_482257-14477.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Maria Bianchi",
|
||||
role: "Flavor Curator",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-working-bread-bakery_23-2148983557.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Luca Conti",
|
||||
role: "Oven Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mid-shot-chef-plating-meal_23-2148794089.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Passionate Team"
|
||||
description="Meet the creators bringing Italian street food traditions to life."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
useInvertedBackground={false}
|
||||
testimonial="The atmosphere, the smell of wood smoke, and the taste - simply perfect. Salento provides a truly authentic culinary memory."
|
||||
rating={5}
|
||||
author="Giulia Ferrari"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-friends-with-pizza-slices_23-2149525555.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-woman-eating-pizza_23-2151231290.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/emotive-handsome-dark-skinned-man-with-bristle-holding-sandwich-while-gesturing-sharing-thoughts-impressions-with-friends-being-food-festival-concert-park_176420-19851.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-friends-taking-selfie_23-2149212129.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiley-teenagers-eating-burgers-outdoors-with-drink_23-2148666618.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social" data-section="social">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"FoodiesGuide",
|
||||
"UrbanBites",
|
||||
"GourmetItaly",
|
||||
"DailyFoodReview",
|
||||
"EcoChefAward",
|
||||
"CityStreetFood",
|
||||
"QualityStamp",
|
||||
]}
|
||||
title="Featured In"
|
||||
description="Proudly recognized by leading local food guides and culinary organizations."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Reviews",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer private catering?",
|
||||
content: "Yes! We cater for weddings, corporate events, and private parties. Contact us to discuss your needs.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Are your ingredients organic?",
|
||||
content: "We prioritize locally sourced and organic ingredients wherever available to ensure the best quality.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Do you have vegan options?",
|
||||
content: "Absolutely! We offer several delicious vegan pizza options prepared in the same traditional style.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-girl-sitting-cafe_1157-16408.jpg"
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions about our process? We have answers."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
text="Ready to experience the taste of Salento? Contact us to book our truck or find our location."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Salento Street Food"
|
||||
copyrightText="© 2025 Salento Wood Fired. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "#",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Menu", items: [{ label: "Burgers" }, { label: "Fries" }] },
|
||||
{ title: "Company", items: [{ label: "Join All Star Club" }] }
|
||||
]}
|
||||
bottomLeftText="© 2025 Goody's Burger Joint"
|
||||
bottomRightText="hello@goodysburgers.com"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user