7 Commits

Author SHA1 Message Date
021f4970c4 Update src/app/admissions/page.tsx 2026-05-20 17:41:23 +00:00
f05be9512e Update src/app/academics/page.tsx 2026-05-20 17:41:23 +00:00
0f92a4fb21 Update src/app/admissions/page.tsx 2026-05-20 17:40:51 +00:00
b441f707d1 Update src/app/academics/page.tsx 2026-05-20 17:40:50 +00:00
1d7dbd8ee8 Update src/app/page.tsx 2026-05-20 17:40:19 +00:00
fdc427596f Add src/app/admissions/page.tsx 2026-05-20 17:40:18 +00:00
322209fdcb Add src/app/academics/page.tsx 2026-05-20 17:40:18 +00:00
3 changed files with 169 additions and 199 deletions

View File

@@ -0,0 +1,45 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function AcademicsPage() {
return (
<ThemeProvider defaultButtonVariant="hover-bubble" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Academics", id: "/academics" },
{ name: "Admissions", id: "/admissions" },
{ name: "Contact", id: "/contact" },
]}
brandName="Vinnys Street Food"
/>
</div>
<div id="features" data-section="features">
<FeatureCardThree
title="Our Programs"
description="Explore our wide range of culinary and business courses designed for future industry leaders."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Culinary Arts", description: "Master the art of cooking with hands-on training.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tacos-with-vegetables-meat_23-2148750432.jpg" },
{ title: "Kitchen Management", description: "Efficiently run a professional kitchen team.", imageSrc: "http://img.b2bpic.net/free-photo/focused-master-chef-wearing-uniform-cooking-delicious-beef-steak-kitchen-restaurant_613910-18983.jpg" },
{ title: "Street Food Business", description: "Turn your passion into a profitable business.", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-appetizing-street-food_23-2151516961.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple columns={[{ title: "Company", items: [{ label: "About" }] }]} bottomLeftText="© 2024 Vinnys Street Food" bottomRightText="All Rights Reserved" />
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,42 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function AdmissionsPage() {
return (
<ThemeProvider defaultButtonVariant="hover-bubble" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Academics", id: "/academics" },
{ name: "Admissions", id: "/admissions" },
{ name: "Contact", id: "/contact" },
]}
brandName="Vinnys Street Food"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Apply Today"
description="Start your journey with us. Fill out the application below to begin the admissions process."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }
]}
textarea={{ name: "experience", placeholder: "Tell us about your experience", required: true }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple columns={[{ title: "Company", items: [{ label: "About" }] }]} bottomLeftText="© 2024 Vinnys Street Food" bottomRightText="All Rights Reserved" />
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -32,21 +32,13 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "hero"},
id: "hero",
},
{ {
name: "About", name: "About", id: "about"},
id: "about",
},
{ {
name: "Menu", name: "Menu", id: "menu"},
id: "menu",
},
{ {
name: "Contact", name: "Contact", id: "contact"},
id: "contact",
},
]} ]}
brandName="Vinnys Street Food" brandName="Vinnys Street Food"
/> />
@@ -55,112 +47,62 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitDoubleCarousel <HeroSplitDoubleCarousel
background={{ background={{
variant: "plain", variant: "plain"}}
}}
title="Vinnys Street Food" title="Vinnys Street Food"
description="Authentic, fresh, and fast. Grab a bite from the citys favorite street food truck, where tradition meets flavor." description="Authentic, fresh, and fast. Grab a bite from the citys favorite street food truck, where tradition meets flavor."
leftCarouselItems={[ leftCarouselItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tacos-with-vegetables-meat_23-2148750432.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tacos-with-vegetables-meat_23-2148750432.jpg", imageAlt: "Street Food Scene"},
imageAlt: "Street Food Scene",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/focused-master-chef-wearing-uniform-cooking-delicious-beef-steak-kitchen-restaurant_613910-18983.jpg", imageSrc: "http://img.b2bpic.net/free-photo/focused-master-chef-wearing-uniform-cooking-delicious-beef-steak-kitchen-restaurant_613910-18983.jpg", imageAlt: "Food Preparation"},
imageAlt: "Food Preparation",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-having-fun-amusement-park_23-2147918719.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-having-fun-amusement-park_23-2147918719.jpg", imageAlt: "Street Food Scene"},
imageAlt: "Street Food Scene",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-eating-burger_23-2148289402.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-eating-burger_23-2148289402.jpg", imageAlt: "Food Preparation"},
imageAlt: "Food Preparation",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/tacos-plate-near-vegetables_23-2148181577.jpg", imageSrc: "http://img.b2bpic.net/free-photo/tacos-plate-near-vegetables_23-2148181577.jpg", imageAlt: "Street Food Scene"},
imageAlt: "Street Food Scene",
},
]} ]}
rightCarouselItems={[ rightCarouselItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-chef-making-barbeque_23-2148723318.jpg", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-chef-making-barbeque_23-2148723318.jpg", imageAlt: "Food Preparation"},
imageAlt: "Food Preparation",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-appetizing-street-food_23-2151516961.jpg", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-appetizing-street-food_23-2151516961.jpg", imageAlt: "Food Preparation"},
imageAlt: "Food Preparation",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/woman-puts-cinnabon-plate-family-party_169016-45009.jpg", imageSrc: "http://img.b2bpic.net/free-photo/woman-puts-cinnabon-plate-family-party_169016-45009.jpg", imageAlt: "Street Food Scene"},
imageAlt: "Street Food Scene",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-holding-female-hands-fast-food-burger-close-up_169016-43530.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-holding-female-hands-fast-food-burger-close-up_169016-43530.jpg", imageAlt: "Food Preparation"},
imageAlt: "Food Preparation",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-chef-cooking-with-blurred-background_181624-30759.jpg", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-chef-cooking-with-blurred-background_181624-30759.jpg", imageAlt: "Street Food Scene"},
imageAlt: "Street Food Scene",
},
]} ]}
buttons={[ buttons={[
{ {
text: "View Menu", text: "View Menu", href: "#menu"},
href: "#menu",
},
{ {
text: "Find Us", text: "Find Us", href: "#contact"},
href: "#contact",
},
]} ]}
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/enjoying-street-food-fest_23-2151543803.jpg", src: "http://img.b2bpic.net/free-photo/enjoying-street-food-fest_23-2151543803.jpg", alt: "Enjoying street food fest"},
alt: "Enjoying street food fest",
},
{ {
src: "http://img.b2bpic.net/free-photo/hunger-relief-community-gives-back_482257-84669.jpg", src: "http://img.b2bpic.net/free-photo/hunger-relief-community-gives-back_482257-84669.jpg", alt: "Hunger relief Community gives back"},
alt: "Hunger relief Community gives back",
},
{ {
src: "http://img.b2bpic.net/free-photo/french-restaurant-scene-with-menu-board_1147-447.jpg", src: "http://img.b2bpic.net/free-photo/french-restaurant-scene-with-menu-board_1147-447.jpg", alt: "French restaurant scene with menu board"},
alt: "French restaurant scene with menu board",
},
{ {
src: "http://img.b2bpic.net/free-photo/woman-having-fun-food-festival_23-2149500437.jpg", src: "http://img.b2bpic.net/free-photo/woman-having-fun-food-festival_23-2149500437.jpg", alt: "Woman having fun at food festival"},
alt: "Woman having fun at food festival",
},
{ {
src: "http://img.b2bpic.net/free-photo/love-concept-with-happy-couple-spending-time-together_23-2149068865.jpg", src: "http://img.b2bpic.net/free-photo/love-concept-with-happy-couple-spending-time-together_23-2149068865.jpg", alt: "Love concept with happy couple spending time together"},
alt: "Love concept with happy couple spending time together",
},
]} ]}
marqueeItems={[ marqueeItems={[
{ {
type: "image", type: "image", src: "http://img.b2bpic.net/free-photo/clients-asking-about-organic-farming_482257-80722.jpg", alt: "eater logo brand minimal"},
src: "http://img.b2bpic.net/free-photo/clients-asking-about-organic-farming_482257-80722.jpg",
alt: "eater logo brand minimal",
},
{ {
type: "image", type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3y9p3w", alt: "tasty magazine brand mark"},
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3y9p3w",
alt: "tasty magazine brand mark",
},
{ {
type: "image", type: "image", src: "http://img.b2bpic.net/free-photo/close-up-friends-partying-with-pizza_23-2149239083.jpg", alt: "urban bite food award"},
src: "http://img.b2bpic.net/free-photo/close-up-friends-partying-with-pizza_23-2149239083.jpg",
alt: "urban bite food award",
},
{ {
type: "image", type: "image", src: "http://img.b2bpic.net/free-photo/homeless-standing-near-building_1157-45320.jpg", alt: "daily meal feature logo"},
src: "http://img.b2bpic.net/free-photo/homeless-standing-near-building_1157-45320.jpg",
alt: "daily meal feature logo",
},
{ {
type: "image", type: "image", src: "http://img.b2bpic.net/free-vector/world-food-day-concept-with-flat-design-background_23-2148310592.jpg", alt: "foodies world media logo"},
src: "http://img.b2bpic.net/free-vector/world-food-day-concept-with-flat-design-background_23-2148310592.jpg",
alt: "foodies world media logo",
},
]} ]}
/> />
</div> </div>
@@ -172,13 +114,9 @@ export default function LandingPage() {
description="Vinnys was born from a passion for bold spices and authentic cooking. We bring the heart of street food directly to your neighborhood." description="Vinnys was born from a passion for bold spices and authentic cooking. We bring the heart of street food directly to your neighborhood."
metrics={[ metrics={[
{ {
value: "10k+", value: "10k+", title: "Happy Customers"},
title: "Happy Customers",
},
{ {
value: "15+", value: "15+", title: "Signature Recipes"},
title: "Signature Recipes",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/woman-puts-cinnabon-plate-family-party_169016-48404.jpg" imageSrc="http://img.b2bpic.net/free-photo/woman-puts-cinnabon-plate-family-party_169016-48404.jpg"
imageAlt="Vinny behind the counter" imageAlt="Vinny behind the counter"
@@ -195,41 +133,17 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "p1", id: "p1", name: "Gourmet Beef Taco", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-tacos-dish_23-2150777657.jpg"},
name: "Gourmet Beef Taco",
price: "$4.50",
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-tacos-dish_23-2150777657.jpg",
},
{ {
id: "p2", id: "p2", name: "Spicy Chicken Burrito", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-arrangement-top-view_23-2148629322.jpg"},
name: "Spicy Chicken Burrito",
price: "$8.99",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-arrangement-top-view_23-2148629322.jpg",
},
{ {
id: "p3", id: "p3", name: "Loaded Street Hotdog", price: "$5.50", imageSrc: "http://img.b2bpic.net/free-photo/street-market-night_23-2151604336.jpg"},
name: "Loaded Street Hotdog",
price: "$5.50",
imageSrc: "http://img.b2bpic.net/free-photo/street-market-night_23-2151604336.jpg",
},
{ {
id: "p4", id: "p4", name: "Crispy Fish Taco", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/traditional-mexican-tacos-with-meat-vegetables-wooden-table_123827-19987.jpg"},
name: "Crispy Fish Taco",
price: "$5.00",
imageSrc: "http://img.b2bpic.net/free-photo/traditional-mexican-tacos-with-meat-vegetables-wooden-table_123827-19987.jpg",
},
{ {
id: "p5", id: "p5", name: "Cheesy Veggie Quesadilla", price: "$6.50", imageSrc: "http://img.b2bpic.net/free-photo/mexican-quesadilla-wrap-with-chicken-corn-sweet-pepper-salsa_2829-11819.jpg"},
name: "Cheesy Veggie Quesadilla",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/mexican-quesadilla-wrap-with-chicken-corn-sweet-pepper-salsa_2829-11819.jpg",
},
{ {
id: "p6", id: "p6", name: "Golden Street Fries", price: "$3.99", imageSrc: "http://img.b2bpic.net/free-photo/fat-salt-tasty-crisps-spicy_1339-28.jpg"},
name: "Golden Street Fries",
price: "$3.99",
imageSrc: "http://img.b2bpic.net/free-photo/fat-salt-tasty-crisps-spicy_1339-28.jpg",
},
]} ]}
title="Chef's Favorites" title="Chef's Favorites"
description="Handcrafted snacks made with premium ingredients and bold, authentic recipes." description="Handcrafted snacks made with premium ingredients and bold, authentic recipes."
@@ -244,20 +158,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Fresh Ingredients", title: "Fresh Ingredients", description: "Locally sourced and farm-fresh produce every day.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-copy-space-colored-bell-peppers-with-green-onions-cutting-board-wooden-background_141793-49609.jpg"},
description: "Locally sourced and farm-fresh produce every day.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-copy-space-colored-bell-peppers-with-green-onions-cutting-board-wooden-background_141793-49609.jpg",
},
{ {
title: "Fast Service", title: "Fast Service", description: "Designed for your busy urban lifestyle.", imageSrc: "http://img.b2bpic.net/free-photo/happy-girls-having-fun-amusement-park_23-2147919066.jpg"},
description: "Designed for your busy urban lifestyle.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-girls-having-fun-amusement-park_23-2147919066.jpg",
},
{ {
title: "Handcrafted", title: "Handcrafted", description: "Slow-cooked recipes with authentic flavor profiles.", imageSrc: "http://img.b2bpic.net/free-photo/putting-tomatoes-yogurt-red-basilic-leaves-together_114579-4561.jpg"},
description: "Slow-cooked recipes with authentic flavor profiles.",
imageSrc: "http://img.b2bpic.net/free-photo/putting-tomatoes-yogurt-red-basilic-leaves-together_114579-4561.jpg",
},
]} ]}
title="Why Vinny's?" title="Why Vinny's?"
description="We don't compromise on the quality of our ingredients or the speed of our service." description="We don't compromise on the quality of our ingredients or the speed of our service."
@@ -271,40 +176,15 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
testimonials={[ testimonials={[
{ {
id: "t1", id: "t1", name: "Sarah J.", role: "Foodie", testimonial: "Best street tacos I've had in a long time. So fresh and flavorful!", imageSrc: "http://img.b2bpic.net/free-photo/happy-man-talking-his-girlfriend-lunch-time-restaurant_637285-1937.jpg"},
name: "Sarah J.",
role: "Foodie",
testimonial: "Best street tacos I've had in a long time. So fresh and flavorful!",
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-talking-his-girlfriend-lunch-time-restaurant_637285-1937.jpg",
},
{ {
id: "t2", id: "t2", name: "Mike R.", role: "Local", testimonial: "I visit every lunch break. The quality is just consistently perfect.", imageSrc: "http://img.b2bpic.net/free-photo/man-winking-thumb-up_1187-3210.jpg"},
name: "Mike R.",
role: "Local",
testimonial: "I visit every lunch break. The quality is just consistently perfect.",
imageSrc: "http://img.b2bpic.net/free-photo/man-winking-thumb-up_1187-3210.jpg",
},
{ {
id: "t3", id: "t3", name: "Elena K.", role: "Blogger", testimonial: "Vinny's is a true local gem. You haven't lived until you've tried the burritos.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-women-with-pizza_23-2149872439.jpg"},
name: "Elena K.",
role: "Blogger",
testimonial: "Vinny's is a true local gem. You haven't lived until you've tried the burritos.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-women-with-pizza_23-2149872439.jpg",
},
{ {
id: "t4", id: "t4", name: "David L.", role: "Fan", testimonial: "Quick, delicious, and perfectly seasoned every single time.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-guy-sunglasses-eating-fast-food-spending-time-outdoors_8353-6330.jpg"},
name: "David L.",
role: "Fan",
testimonial: "Quick, delicious, and perfectly seasoned every single time.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-guy-sunglasses-eating-fast-food-spending-time-outdoors_8353-6330.jpg",
},
{ {
id: "t5", id: "t5", name: "Grace M.", role: "Regular", testimonial: "The loaded fries are a life-changing snack. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/image-young-happy-smiling-woman-having-fun-eating-ice-cream-coffee-shop-restaurant-closeup-portrait_1153-5754.jpg"},
name: "Grace M.",
role: "Regular",
testimonial: "The loaded fries are a life-changing snack. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/image-young-happy-smiling-woman-having-fun-eating-ice-cream-coffee-shop-restaurant-closeup-portrait_1153-5754.jpg",
},
]} ]}
title="Loved by Foodies" title="Loved by Foodies"
description="Don't take our word for it—check out what the neighborhood has to say about their Vinny's experience." description="Don't take our word for it—check out what the neighborhood has to say about their Vinny's experience."
@@ -316,14 +196,7 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
names={[ names={[
"Eater Local", "Eater Local", "Tasty Magazine", "Urban Food Guide", "Daily Meal", "Foodies World", "Snack Review", "Bite News"]}
"Tasty Magazine",
"Urban Food Guide",
"Daily Meal",
"Foodies World",
"Snack Review",
"Bite News",
]}
title="Featured In" title="Featured In"
description="We are proud to be recognized by leading local food media outlets." description="We are proud to be recognized by leading local food media outlets."
/> />
@@ -335,20 +208,15 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ {
id: "f1", id: "f1", title: "Where can we find the truck?", content: "Follow us on Instagram for daily location updates and pop-up events."},
title: "Where can we find the truck?",
content: "Follow us on Instagram for daily location updates and pop-up events.",
},
{ {
id: "f2", id: "f2", title: "Do you offer catering?", content: "Yes! Contact us through the form below for wedding, corporate, or private party inquiries."},
title: "Do you offer catering?",
content: "Yes! Contact us through the form below for wedding, corporate, or private party inquiries.",
},
{ {
id: "f3", id: "f3", title: "Are there vegetarian options?", content: "Absolutely, we have several delicious veggie-friendly tacos and quesadillas."},
title: "Are there vegetarian options?", {
content: "Absolutely, we have several delicious veggie-friendly tacos and quesadillas.", id: "f4", title: "What are the payment methods?", content: "We accept all major credit cards, Apple Pay, Google Pay, and cash."},
}, {
id: "f5", title: "Can I customize my order?", content: "Yes, just let our team know if you have any special requests or allergies."},
]} ]}
title="Frequently Asked" title="Frequently Asked"
description="Got questions? We've got answers." description="Got questions? We've got answers."
@@ -363,31 +231,46 @@ export default function LandingPage() {
description="Interested in catering or have a question? Send us a message and we'll get back to you soon." description="Interested in catering or have a question? Send us a message and we'll get back to you soon."
inputs={[ inputs={[
{ {
name: "name", name: "name", type: "text", placeholder: "Your Name", required: true,
type: "text",
placeholder: "Your Name",
required: true,
}, },
{ {
name: "email", name: "email", type: "email", placeholder: "Your Email", required: true,
type: "email",
placeholder: "Your Email",
required: true,
}, },
]} ]}
textarea={{ textarea={{
name: "message", name: "message", placeholder: "How can we help you?", required: true,
placeholder: "How can we help you?",
required: true,
}} }}
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-holding-glass-lemonade-caravan_23-2148659519.jpg" imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-holding-glass-lemonade-caravan_23-2148659519.jpg"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterSimple
logoText="Vinnys Street Food" columns={[
copyrightText="© 2025 Vinny's Street Food. All rights reserved." {
title: "Vinny's Street Food", items: [
{ label: "Our Story", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Information", items: [
{ label: "Privacy Policy" },
{ label: "Terms of Service" },
{ label: "FAQ", href: "#faq" }
]
},
{
title: "Social", items: [
{ label: "Instagram" },
{ label: "Facebook" },
{ label: "TikTok" }
]
}
]}
bottomLeftText="© 2025 Vinny's Street Food"
bottomRightText="All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>