5 Commits

Author SHA1 Message Date
235277d237 Merge version_3 into main
Merge version_3 into main
2026-05-09 18:57:02 +00:00
9adfde9ede Update src/app/page.tsx 2026-05-09 18:56:59 +00:00
3860c6b3d8 Merge version_2 into main
Merge version_2 into main
2026-05-09 18:53:49 +00:00
ca619b5c97 Update src/app/page.tsx 2026-05-09 18:53:46 +00:00
3d02b1e0b1 Merge version_1 into main
Merge version_1 into main
2026-05-09 18:43:24 +00:00

View File

@@ -7,7 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
@@ -28,7 +28,7 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
<NavbarStyleCentered
navItems={[
{ name: "Menu", id: "#menu" },
{ name: "About", id: "#about" },
@@ -52,8 +52,6 @@ export default function LandingPage() {
{
text: "Find Us", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/boiled-chicken-cut-into-pieces-white-dish-wooden-table_1150-23188.jpg"
imageAlt="Authentic mexican tacos served on a rustic table"
mediaAnimation="blur-reveal"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/mexican-vegetables_23-2148024776.jpg", alt: "Mexican vegetables" },
@@ -102,9 +100,11 @@ export default function LandingPage() {
{ id: "4", name: "Lengua", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/tacos-with-vegetables-meat-view_23-2148750437.jpg" },
{ id: "5", name: "Pollo Asado", price: "$3.00", imageSrc: "http://img.b2bpic.net/free-photo/creative-composition-tasty-food_23-2148949079.jpg" },
{ id: "6", name: "Grande Burrito", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805518.jpg" },
{ id: "7", name: "Quesadilla Suprema", price: "$8.50", imageSrc: "http://img.b2bpic.net/free-photo/quesadilla-top-view_23-2148873752.jpg" },
{ id: "8", name: "Guacamole & Chips", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/guacamole-chips_23-2148873752.jpg" }
]}
title="Our Signature Tacos"
description="Experience our most loved street-style classics."
title="Our Signature Menu"
description="Handcrafted Mexican favorites made fresh daily."
/>
</div>
@@ -195,4 +195,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}