Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e62eff67fb | |||
| daf63c9f57 | |||
| 85a1847f61 | |||
| 7ba591db59 |
225
src/app/page.tsx
225
src/app/page.tsx
@@ -6,7 +6,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
|
||||
@@ -29,17 +29,11 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Order",
|
||||
id: "order",
|
||||
},
|
||||
name: "Order", id: "order"},
|
||||
]}
|
||||
brandName="Casa Burger"
|
||||
/>
|
||||
@@ -49,175 +43,95 @@ export default function LandingPage() {
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "glowing-orb",
|
||||
}}
|
||||
variant: "glowing-orb"}}
|
||||
title="The Crunchiest Burger in Algiers"
|
||||
description="Crafted with passion, served with soul. Experience the perfect crunch in every bite."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Amine K.",
|
||||
handle: "@amine_foodie",
|
||||
testimonial: "Hands down the best burger experience in Algiers!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-double-burger-with-cheese-bacon_23-2148290695.jpg?_wi=1",
|
||||
imageAlt: "Delicious double burger with cheese and bacon",
|
||||
},
|
||||
name: "Amine K.", handle: "@amine_foodie", testimonial: "Hands down the best burger experience in Algiers!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-double-burger-with-cheese-bacon_23-2148290695.jpg?_wi=1", imageAlt: "Delicious double burger with cheese and bacon"},
|
||||
{
|
||||
name: "Sarah L.",
|
||||
handle: "@sarah_eats",
|
||||
testimonial: "Crunchy, juicy, and absolutely perfect. Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-looking-hamburgers_23-2148614066.jpg?_wi=1",
|
||||
imageAlt: "Delicious double burger with cheese and bacon",
|
||||
},
|
||||
name: "Sarah L.", handle: "@sarah_eats", testimonial: "Crunchy, juicy, and absolutely perfect. Highly recommended.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-looking-hamburgers_23-2148614066.jpg?_wi=1", imageAlt: "Delicious double burger with cheese and bacon"},
|
||||
{
|
||||
name: "Yacine M.",
|
||||
handle: "@yacine_burger",
|
||||
testimonial: "Great service and even better food. A must-visit.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burger-lettuce-cheeseburger-fat-close-up_1122-2436.jpg?_wi=1",
|
||||
imageAlt: "Delicious double burger with cheese and bacon",
|
||||
},
|
||||
name: "Yacine M.", handle: "@yacine_burger", testimonial: "Great service and even better food. A must-visit.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burger-lettuce-cheeseburger-fat-close-up_1122-2436.jpg?_wi=1", imageAlt: "Delicious double burger with cheese and bacon"},
|
||||
{
|
||||
name: "Fatima Z.",
|
||||
handle: "@fatima_kitchen",
|
||||
testimonial: "The atmosphere and the burgers are top-notch.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holds-mixed-burgers-wooden-board-meat-lettuce-tomato-cucumber-onion-top-view_141793-12411.jpg?_wi=1",
|
||||
imageAlt: "Delicious double burger with cheese and bacon",
|
||||
},
|
||||
name: "Fatima Z.", handle: "@fatima_kitchen", testimonial: "The atmosphere and the burgers are top-notch.", rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holds-mixed-burgers-wooden-board-meat-lettuce-tomato-cucumber-onion-top-view_141793-12411.jpg?_wi=1", imageAlt: "Delicious double burger with cheese and bacon"},
|
||||
{
|
||||
name: "Karim B.",
|
||||
handle: "@karim_tastes",
|
||||
testimonial: "Finally, a burger that lives up to the hype.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/street-food-still-life_23-2151535236.jpg?_wi=1",
|
||||
imageAlt: "Delicious double burger with cheese and bacon",
|
||||
},
|
||||
name: "Karim B.", handle: "@karim_tastes", testimonial: "Finally, a burger that lives up to the hype.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/street-food-still-life_23-2151535236.jpg?_wi=1", imageAlt: "Delicious double burger with cheese and bacon"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "#order",
|
||||
},
|
||||
text: "Order Now", href: "#order"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-double-burger-with-cheese-bacon_23-2148290695.jpg?_wi=2"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-veggie-burger-with-black-buns-cutting-board-with-copy-space_23-2148784541.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-veggie-burger-with-black-buns-cutting-board-with-copy-space_23-2148784541.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-person-near-burger-plate-holding-jar-with-butter_23-2148784521.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-person-near-burger-plate-holding-jar-with-butter_23-2148784521.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-beef-burger-with-bacon_23-2148784485.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-beef-burger-with-bacon_23-2148784485.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-male-cutting-burger-with-egg_23-2148678848.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-male-cutting-burger-with-egg_23-2148678848.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/tasty-rice-dish-with-egg_23-2147681092.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/tasty-rice-dish-with-egg_23-2147681092.jpg", alt: "Customer 5"},
|
||||
]}
|
||||
avatarText="Join 5,000+ satisfied foodies"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Locally Sourced",
|
||||
},
|
||||
type: "text", text: "Locally Sourced"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Hand-Pressed Beef",
|
||||
},
|
||||
type: "text", text: "Hand-Pressed Beef"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Secret Spice Blend",
|
||||
},
|
||||
type: "text", text: "Secret Spice Blend"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Crispy To Perfection",
|
||||
},
|
||||
type: "text", text: "Crispy To Perfection"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Algiers Finest",
|
||||
},
|
||||
type: "text", text: "Algiers Finest"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "b1",
|
||||
name: "Signature Crunch",
|
||||
price: "1200 DZD",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-looking-hamburgers_23-2148614066.jpg?_wi=2",
|
||||
},
|
||||
id: "b1", name: "Signature Crunch", price: "1200 DZD", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-looking-hamburgers_23-2148614066.jpg?_wi=2", onQuantityChange: (q) => console.log(`Added ${q} Signature Crunch to cart`)},
|
||||
{
|
||||
id: "b2",
|
||||
name: "Royal Cheese",
|
||||
price: "1450 DZD",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burger-lettuce-cheeseburger-fat-close-up_1122-2436.jpg?_wi=2",
|
||||
},
|
||||
id: "b2", name: "Royal Cheese", price: "1450 DZD", imageSrc: "http://img.b2bpic.net/free-photo/burger-lettuce-cheeseburger-fat-close-up_1122-2436.jpg?_wi=2", onQuantityChange: (q) => console.log(`Added ${q} Royal Cheese to cart`)},
|
||||
{
|
||||
id: "b3",
|
||||
name: "Spicy Algiers",
|
||||
price: "1350 DZD",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holds-mixed-burgers-wooden-board-meat-lettuce-tomato-cucumber-onion-top-view_141793-12411.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "b4",
|
||||
name: "Mushroom Deluxe",
|
||||
price: "1500 DZD",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/street-food-still-life_23-2151535236.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "b5",
|
||||
name: "Classic Burger",
|
||||
price: "950 DZD",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hamburger_23-2147989470.jpg",
|
||||
},
|
||||
{
|
||||
id: "b6",
|
||||
name: "Crispy Chicken",
|
||||
price: "1100 DZD",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-homemade-delicious-sandwich-with-black-olive-plate-stained-white-surface-with-free-space_179666-42357.jpg",
|
||||
},
|
||||
id: "b3", name: "Spicy Algiers", price: "1350 DZD", imageSrc: "http://img.b2bpic.net/free-photo/man-holds-mixed-burgers-wooden-board-meat-lettuce-tomato-cucumber-onion-top-view_141793-12411.jpg?_wi=2", onQuantityChange: (q) => console.log(`Added ${q} Spicy Algiers to cart`)},
|
||||
]}
|
||||
title="Featured Menu"
|
||||
description="Our signature burgers, crafted for true taste enthusiasts."
|
||||
description="Our signature burgers, crafted for true taste enthusiasts. Add items to your cart to begin your order."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
textboxLayout="split-actions"
|
||||
useInvertedBackground={false}
|
||||
title="About Casa Burger"
|
||||
description="Founded in the heart of Algiers, Casa Burger brings an innovative street food aesthetic to your table. We focus on quality, texture, and uncompromising flavor profiles that make every burger an experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Our Menu", href: "#menu"},
|
||||
]}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Fresh Ingredients",
|
||||
description: "We source the finest local produce daily.",
|
||||
},
|
||||
title: "Fresh Ingredients", description: "We source the finest local produce daily."},
|
||||
{
|
||||
title: "Secret Recipes",
|
||||
description: "Our signature sauces and spice blends are crafted in-house.",
|
||||
},
|
||||
title: "Secret Recipes", description: "Our signature sauces and spice blends are crafted in-house."},
|
||||
{
|
||||
title: "Culinary Passion",
|
||||
description: "Every burger is grilled to perfection, ensuring that iconic crunch.",
|
||||
},
|
||||
title: "Culinary Passion", description: "Every burger is grilled to perfection, ensuring that iconic crunch."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-puts-pepperoni-pizza-dough-covered-with-tomato-sauce_141793-2010.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -230,45 +144,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Amazing Flavor",
|
||||
quote: "The crunch is real! Best burger in the city.",
|
||||
name: "Amine",
|
||||
role: "Food Critic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-holding-burger-cut-half_23-2148678849.jpg",
|
||||
},
|
||||
id: "1", title: "Amazing Flavor", quote: "The crunch is real! Best burger in the city.", name: "Amine", role: "Food Critic", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-holding-burger-cut-half_23-2148678849.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Incredible Service",
|
||||
quote: "Fast, friendly, and delicious. My new favorite spot.",
|
||||
name: "Sarah",
|
||||
role: "Student",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-burger-with-egg_23-2148678846.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Juicy and Perfect",
|
||||
quote: "I love the attention to detail in every layer.",
|
||||
name: "Yacine",
|
||||
role: "Architect",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/guy-black-gloves-holds-juicy-cheeseburger-brown-bread_140725-7028.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "True Quality",
|
||||
quote: "You can taste the quality in the ingredients.",
|
||||
name: "Fatima",
|
||||
role: "Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cheeseburger-sweet-potato-fries-with-sauce_23-2148678823.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Will Come Back",
|
||||
quote: "Absolutely the best burger I've had in years.",
|
||||
name: "Karim",
|
||||
role: "Entrepreneur",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-arrangement_23-2148868201.jpg",
|
||||
},
|
||||
id: "2", title: "Incredible Service", quote: "Fast, friendly, and delicious. My new favorite spot.", name: "Sarah", role: "Student", imageSrc: "http://img.b2bpic.net/free-photo/close-up-burger-with-egg_23-2148678846.jpg"},
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Real feedback from our satisfied foodies across Algiers."
|
||||
@@ -279,11 +157,12 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
tag="Contact Us"
|
||||
title="Ready for your crunch?"
|
||||
description="Order today or reach out for inquiries and catering."
|
||||
variant: "rotated-rays-static"}}
|
||||
tag="Order Today"
|
||||
title="Checkout Your Order"
|
||||
description="Please enter your details to complete your order."
|
||||
buttonText="Complete Order"
|
||||
termsText="By completing your order, you provide us with your first name, last name, phone number, state, and municipality information for delivery purposes."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -291,16 +170,12 @@ export default function LandingPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Casa Burger"
|
||||
leftLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Terms of Service", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user