Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d6f7775e91 | |||
| 8012af7d80 | |||
| 295bbb0b13 | |||
| 1e665d3e9c |
218
src/app/page.tsx
218
src/app/page.tsx
@@ -31,17 +31,11 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Las Delicias Poblanitas"
|
||||
/>
|
||||
@@ -50,77 +44,48 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Authentic Mexican Flavor, Santa Clarita Heart"
|
||||
description="Fresh ingredients, bold traditional recipes, and family tradition served daily. From breakfast burritos to seafood specialties—every plate made to crave."
|
||||
kpis={[
|
||||
{
|
||||
value: "15+",
|
||||
label: "Years Served",
|
||||
},
|
||||
value: "15+", label: "Years Served"},
|
||||
{
|
||||
value: "4.8",
|
||||
label: "Avg Rating",
|
||||
},
|
||||
value: "4.8", label: "Avg Rating"},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Authentic",
|
||||
},
|
||||
value: "100%", label: "Authentic"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu & Order Now",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "Order Online for Pickup", href: "#menu"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mexican-food_23-2148159789.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-shot-lunch-with-nuggets-vegetables-wooden-surface_181624-28546.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-shot-lunch-with-nuggets-vegetables-wooden-surface_181624-28546.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-mexican-dish-with-wooden-background_23-2148283082.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-mexican-dish-with-wooden-background_23-2148283082.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/selective-focus-shot-mexican-style-delicious-pork-flautas-white-plate_181624-38905.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-mexican-food-plates_23-2147812107.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-mexican-food-plates_23-2147812107.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/nuts-falling-out-box_23-2147690222.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/nuts-falling-out-box_23-2147690222.jpg", alt: "Customer 5"},
|
||||
]}
|
||||
avatarText="Join 5,000+ Happy Locals"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Fresh Ingredients",
|
||||
},
|
||||
type: "text", text: "Fresh Ingredients"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Owned",
|
||||
},
|
||||
type: "text", text: "Family Owned"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Authentic Recipes",
|
||||
},
|
||||
type: "text", text: "Authentic Recipes"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Santa Clarita Proud",
|
||||
},
|
||||
type: "text", text: "Santa Clarita Proud"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Open Daily",
|
||||
},
|
||||
type: "text", text: "Open Daily"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -130,18 +95,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our Legacy of",
|
||||
},
|
||||
type: "text", content: "Our Legacy of"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-mexican-party-decoration-with-food_23-2149317306.jpg",
|
||||
alt: "Family Kitchen",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/beautiful-mexican-party-decoration-with-food_23-2149317306.jpg", alt: "Family Kitchen"},
|
||||
{
|
||||
type: "text",
|
||||
content: "Tradition & Flavor",
|
||||
},
|
||||
type: "text", content: "Tradition & Flavor"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -154,41 +112,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Breakfast Burrito",
|
||||
price: "$12.95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-shrimp-with-sauce-plate_141793-11283.jpg",
|
||||
},
|
||||
id: "p1", name: "Breakfast Burrito", price: "$12.95", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-shrimp-with-sauce-plate_141793-11283.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Street Taco Combo",
|
||||
price: "$15.95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-mexican-tacos-with-meat-vegetables-wooden-table_123827-19987.jpg",
|
||||
},
|
||||
id: "p2", name: "Street Taco Combo", price: "$15.95", imageSrc: "http://img.b2bpic.net/free-photo/traditional-mexican-tacos-with-meat-vegetables-wooden-table_123827-19987.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Mole Poblano",
|
||||
price: "$18.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sweet-jaggery-dessert-arrangement_23-2149335605.jpg",
|
||||
},
|
||||
id: "p3", name: "Mole Poblano", price: "$18.50", imageSrc: "http://img.b2bpic.net/free-photo/sweet-jaggery-dessert-arrangement_23-2149335605.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Seafood Ceviche",
|
||||
price: "$19.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-beef-stripes-with-vegetables-tortilla-with-guacamole-table-cloth_23-2148042467.jpg",
|
||||
},
|
||||
id: "p4", name: "Seafood Ceviche", price: "$19.00", imageSrc: "http://img.b2bpic.net/free-photo/mexican-beef-stripes-with-vegetables-tortilla-with-guacamole-table-cloth_23-2148042467.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "House Guacamole",
|
||||
price: "$9.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-banquet_23-2149893502.jpg",
|
||||
},
|
||||
id: "p5", name: "House Guacamole", price: "$9.50", imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-banquet_23-2149893502.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Churros & Dulce",
|
||||
price: "$7.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dessert-topped-with-cream-cherries_141793-658.jpg",
|
||||
},
|
||||
id: "p6", name: "Churros & Dulce", price: "$7.50", imageSrc: "http://img.b2bpic.net/free-photo/dessert-topped-with-cream-cherries_141793-658.jpg"},
|
||||
]}
|
||||
title="Chef’s Specialties"
|
||||
description="Handcrafted dishes featuring traditional recipes passed down through generations."
|
||||
@@ -202,45 +136,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarahcooks",
|
||||
testimonial: "Best breakfast burrito in Santa Clarita! The salsa is perfection.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg",
|
||||
},
|
||||
id: "1", name: "Sarah J.", handle: "@sarahcooks", testimonial: "Best breakfast burrito in Santa Clarita! The salsa is perfection.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael R.",
|
||||
handle: "@mikerocks",
|
||||
testimonial: "Authentic flavors and amazing service. My family loves coming here for dinner.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-delicious-burger_23-2150347940.jpg",
|
||||
},
|
||||
id: "2", name: "Michael R.", handle: "@mikerocks", testimonial: "Authentic flavors and amazing service. My family loves coming here for dinner.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-delicious-burger_23-2150347940.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily D.",
|
||||
handle: "@emilyd",
|
||||
testimonial: "The Mole Poblano is absolutely divine. A real hidden gem.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-happy-friends-enjoying-conversation-appetizer-dining-table-home_637285-5882.jpg",
|
||||
},
|
||||
id: "3", name: "Emily D.", handle: "@emilyd", testimonial: "The Mole Poblano is absolutely divine. A real hidden gem.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-happy-friends-enjoying-conversation-appetizer-dining-table-home_637285-5882.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
handle: "@davikim",
|
||||
testimonial: "Consistently great food. The catering packs are life savers for my office events.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-brunette-woman-with-combed-hair-clean-face-skin-looking-thoughtful-logo-promo-left-empty-space-isolated-studio-background_176420-46713.jpg",
|
||||
},
|
||||
id: "4", name: "David K.", handle: "@davikim", testimonial: "Consistently great food. The catering packs are life savers for my office events.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-brunette-woman-with-combed-hair-clean-face-skin-looking-thoughtful-logo-promo-left-empty-space-isolated-studio-background_176420-46713.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jennifer L.",
|
||||
handle: "@jennylo",
|
||||
testimonial: "Fresh, bold, and so authentic. So glad we found this spot!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-having-cocktails_23-2150244991.jpg",
|
||||
},
|
||||
id: "5", name: "Jennifer L.", handle: "@jennylo", testimonial: "Fresh, bold, and so authentic. So glad we found this spot!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-having-cocktails_23-2150244991.jpg"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Locals Love"
|
||||
@@ -255,20 +164,11 @@ export default function LandingPage() {
|
||||
tag="Our Growth"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "5,000+",
|
||||
description: "Tacos served weekly",
|
||||
},
|
||||
id: "m1", value: "5,000+", description: "Tacos served weekly"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "250+",
|
||||
description: "Happy catering events",
|
||||
},
|
||||
id: "m2", value: "250+", description: "Happy catering events"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "12",
|
||||
description: "Secret family recipes",
|
||||
},
|
||||
id: "m3", value: "12", description: "Secret family recipes"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -280,20 +180,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer catering?",
|
||||
content: "Yes! We offer customizable family packs and catering packages for events of all sizes. Contact us for details.",
|
||||
},
|
||||
id: "f1", title: "Do you offer catering?", content: "Yes! We offer customizable family packs and catering packages for events of all sizes. Contact us for details."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Are your ingredients fresh?",
|
||||
content: "Absolutely. We pride ourselves on using high-quality, fresh ingredients sourced daily for all our traditional dishes.",
|
||||
},
|
||||
id: "f2", title: "Are your ingredients fresh?", content: "Absolutely. We pride ourselves on using high-quality, fresh ingredients sourced daily for all our traditional dishes."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Do you have vegetarian options?",
|
||||
content: "Yes, we feature several delicious vegetarian and gluten-friendly options across our menu.",
|
||||
},
|
||||
id: "f3", title: "Do you have vegetarian options?", content: "Yes, we feature several delicious vegetarian and gluten-friendly options across our menu."},
|
||||
{
|
||||
id: "f4", title: "What are your operating hours and location?", content: "We are located in the heart of Santa Clarita, open daily from 9:00 AM to 9:00 PM to serve you the best authentic Mexican cuisine."}
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions about our menu or catering options? We’ve got answers."
|
||||
@@ -308,27 +201,16 @@ export default function LandingPage() {
|
||||
description="For catering inquiries, large group reservations, or just to say hi, fill out the form below."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
},
|
||||
name: "phone", type: "tel", placeholder: "Phone Number"},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "How can we help?",
|
||||
required: true,
|
||||
name: "message", placeholder: "How can we help?", required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-mexican-party-decoration_23-2149317300.jpg"
|
||||
/>
|
||||
@@ -343,4 +225,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user