Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 94bad03f1f | |||
| 4250c94491 | |||
| 856de0bf65 | |||
| 44122ac407 | |||
| c2d8d770b2 | |||
| f49138fefe | |||
| 25c8a0c76e | |||
| b4e9a091b8 | |||
| 758fa9d5b7 |
@@ -33,7 +33,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Story", id: "story" },
|
{ name: "Story", id: "story" },
|
||||||
{ name: "Find Us", id: "location" },
|
{ name: "Find Us", id: "location" },
|
||||||
{ name: "Catering", id: "catering" },
|
{ name: "Catering", id: "catering" },
|
||||||
{ name: "Order", id: "order" }
|
{ name: "Products", id: "/products" }
|
||||||
]}
|
]}
|
||||||
brandName="Lalo's Tacos"
|
brandName="Lalo's Tacos"
|
||||||
bottomLeftText="Phoenix, AZ"
|
bottomLeftText="Phoenix, AZ"
|
||||||
@@ -104,22 +104,22 @@ export default function LandingPage() {
|
|||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", brand: "Signature", name: "Birria Tacos", price: "$6.50", rating: 5,
|
id: "1", brand: "Signature", name: "Birria Tacos", price: "$6.50", rating: 5,
|
||||||
reviewCount: "2.3k", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tacos-lime-plate_23-2148629354.jpg", imageAlt: "Birria tacos with crispy tortilla and dipping consommé"
|
reviewCount: "2.3k", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tacos-lime-plate_23-2148629354.jpg?_wi=1", imageAlt: "Birria tacos with crispy tortilla and dipping consommé"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", brand: "Signature", name: "Carne Asada", price: "$5.50", rating: 5,
|
id: "2", brand: "Signature", name: "Carne Asada", price: "$5.50", rating: 5,
|
||||||
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-with-sauce-arrangement_23-2148629320.jpg", imageAlt: "Char-grilled steak tacos with onions and cilantro"
|
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-with-sauce-arrangement_23-2148629320.jpg?_wi=1", imageAlt: "Char-grilled steak tacos with onions and cilantro"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", brand: "Signature", name: "Al Pastor", price: "$5.00", rating: 5,
|
id: "3", brand: "Signature", name: "Al Pastor", price: "$5.00", rating: 5,
|
||||||
reviewCount: "1.5k", imageSrc: "http://img.b2bpic.net/free-photo/burritos_23-2148024799.jpg", imageAlt: "Marinated pork tacos with pineapple and salsa"
|
reviewCount: "1.5k", imageSrc: "http://img.b2bpic.net/free-photo/burritos_23-2148024799.jpg?_wi=1", imageAlt: "Marinated pork tacos with pineapple and salsa"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", brand: "Premium", name: "Quesabirria", price: "$7.00", rating: 5,
|
id: "4", brand: "Premium", name: "Quesabirria", price: "$7.00", rating: 5,
|
||||||
reviewCount: "1.9k", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-tomato-soup-cooked-from-fresh-red-tomatoes-dark-background-tomato-soup-dish-sauce-meal_140725-96777.jpg", imageAlt: "Cheese-crusted taco served with rich dipping broth"
|
reviewCount: "1.9k", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-tomato-soup-cooked-from-fresh-red-tomatoes-dark-background-tomato-soup-dish-sauce-meal_140725-96777.jpg?_wi=1", imageAlt: "Cheese-crusted taco served with rich dipping broth"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: "See Full Menu", href: "#" }]}
|
buttons={[{ text: "See Full Menu", href: "/products" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -131,7 +131,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
showBorder={true}
|
showBorder={true}
|
||||||
buttons={[{ text: "Order Pickup", href: "#" }]}
|
buttons={[{ text: "Order Pickup", href: "/products" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Explore", items: [
|
title: "Explore", items: [
|
||||||
{ label: "Menu", href: "#menu" },
|
{ label: "Menu", href: "/products" },
|
||||||
{ label: "Our Story", href: "#story" },
|
{ label: "Our Story", href: "#story" },
|
||||||
{ label: "Catering", href: "#catering" }
|
{ label: "Catering", href: "#catering" }
|
||||||
]
|
]
|
||||||
@@ -255,4 +255,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
120
src/app/products/page.tsx
Normal file
120
src/app/products/page.tsx
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
import { Utensils } from 'lucide-react';
|
||||||
|
|
||||||
|
export default function ProductsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
|
background="none"
|
||||||
|
cardStyle="inset"
|
||||||
|
primaryButtonStyle="flat"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Menu", id: "menu" },
|
||||||
|
{ name: "Story", id: "/" },
|
||||||
|
{ name: "Find Us", id: "/" },
|
||||||
|
{ name: "Catering", id: "/" },
|
||||||
|
{ name: "Products", id: "/products" }
|
||||||
|
]}
|
||||||
|
brandName="Lalo's Tacos"
|
||||||
|
bottomLeftText="Phoenix, AZ"
|
||||||
|
bottomRightText="info@lalos-tacos.com"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="hero" data-section="hero">
|
||||||
|
<HeroBillboardScroll
|
||||||
|
title="Our Full Menu"
|
||||||
|
description="Explore every taco, quesadilla, and specialty item. Fresh ingredients. Authentic flavors. Your next favorite."
|
||||||
|
tag="Complete Menu"
|
||||||
|
tagIcon={Utensils}
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiRlB591Fok0v3ub7QN09QHKun/uploaded-1773076413701-etwv1xdo.png"
|
||||||
|
imageAlt="Lalo's Tacos Full Menu"
|
||||||
|
buttons={[
|
||||||
|
{ text: "Order Now", href: "#" },
|
||||||
|
{ text: "Back to Home", href: "/" }
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="menu" data-section="menu">
|
||||||
|
<ProductCardTwo
|
||||||
|
title="Signature Tacos"
|
||||||
|
description="The tacos everyone lines up for. Each one crafted with fire, flavor, and family tradition."
|
||||||
|
tag="Signature Items"
|
||||||
|
tagIcon={Utensils}
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
carouselMode="buttons"
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "1", brand: "Signature", name: "Birria Tacos", price: "$6.50", rating: 5,
|
||||||
|
reviewCount: "2.3k", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tacos-lime-plate_23-2148629354.jpg?_wi=2", imageAlt: "Birria tacos with crispy tortilla and dipping consommé"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", brand: "Signature", name: "Carne Asada", price: "$5.50", rating: 5,
|
||||||
|
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-with-sauce-arrangement_23-2148629320.jpg?_wi=2", imageAlt: "Char-grilled steak tacos with onions and cilantro"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", brand: "Signature", name: "Al Pastor", price: "$5.00", rating: 5,
|
||||||
|
reviewCount: "1.5k", imageSrc: "http://img.b2bpic.net/free-photo/burritos_23-2148024799.jpg?_wi=2", imageAlt: "Marinated pork tacos with pineapple and salsa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", brand: "Premium", name: "Quesabirria", price: "$7.00", rating: 5,
|
||||||
|
reviewCount: "1.9k", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-tomato-soup-cooked-from-fresh-red-tomatoes-dark-background-tomato-soup-dish-sauce-meal_140725-96777.jpg?_wi=2", imageAlt: "Cheese-crusted taco served with rich dipping broth"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
buttons={[{ text: "Explore More", href: "#" }]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseReveal
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Explore", items: [
|
||||||
|
{ label: "Menu", href: "/products" },
|
||||||
|
{ label: "Our Story", href: "/" },
|
||||||
|
{ label: "Catering", href: "/" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Instagram", href: "https://instagram.com" },
|
||||||
|
{ label: "Email", href: "mailto:info@lalos-tacos.com" },
|
||||||
|
{ label: "Find Us", href: "/" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" },
|
||||||
|
{ label: "Contact", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
copyrightText="© 2025 Lalo's Tacos | Phoenix, Arizona"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user