Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e3567cdc78 | |||
| 74094c00c9 |
137
src/app/page.tsx
137
src/app/page.tsx
@@ -7,7 +7,7 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
@@ -30,14 +30,11 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "Locations", id: "locations"},
|
||||
{
|
||||
name: "Order Now", id: "order-now"},
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Locations", id: "locations" },
|
||||
{ name: "Order Now", id: "order-now" },
|
||||
]}
|
||||
brandName="iyycburg"
|
||||
/>
|
||||
@@ -51,16 +48,12 @@ export default function LandingPage() {
|
||||
description="100% Halal. 100% Alberta Beef. 100% Fresh. Smashed to perfection daily."
|
||||
tag="Smashed to Perfection"
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now", href: "#order-now"},
|
||||
{
|
||||
text: "View Menu", href: "#menu"},
|
||||
{ text: "Order Now", href: "#order-now" },
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/preparation-delicious-burger-arrangement_23-2148868245.jpg", imageAlt: "Sizzling smash burger"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-hamburgers-arrangement_23-2148614060.jpg", imageAlt: "Fresh burger assembly"},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/preparation-delicious-burger-arrangement_23-2148868245.jpg", imageAlt: "Sizzling smash burger" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-hamburgers-arrangement_23-2148614060.jpg", imageAlt: "Fresh burger assembly" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
@@ -73,7 +66,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"SkipTheDishes", "DoorDash", "Google Reviews", "TripAdvisor", "Yelp", "Instagram", "TikTok"]}
|
||||
"SkipTheDishes", "DoorDash", "Google Reviews", "TripAdvisor", "Yelp", "Instagram", "TikTok"]}
|
||||
title="Trusted by Thousands"
|
||||
description="Join our community of satisfied food lovers across Calgary."
|
||||
/>
|
||||
@@ -86,24 +79,12 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", brand: "iyycburg", name: "Double Burger", price: "$12.99", rating: 5,
|
||||
reviewCount: "800", imageSrc: "http://img.b2bpic.net/free-photo/tasty-hamburger-with-flying-ingredients-splash-sauce-dark-background_90220-1269.jpg"},
|
||||
{
|
||||
id: "p2", brand: "iyycburg", name: "Smashed Samosa Burger", price: "$11.99", rating: 5,
|
||||
reviewCount: "450", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cheesy-meat-burger-with-seasonings-dark-surface-bun-sandwich-fast-food_140725-82153.jpg"},
|
||||
{
|
||||
id: "p3", brand: "iyycburg", name: "Butter Chicken Poutine", price: "$13.99", rating: 5,
|
||||
reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/chicken-pieces-skewers-served-with-french-fries-mayonnaise-ketchup_141793-1878.jpg"},
|
||||
{
|
||||
id: "p4", brand: "iyycburg", name: "Coffee Crisp Milkshake", price: "$9.99", rating: 5,
|
||||
reviewCount: "250", imageSrc: "http://img.b2bpic.net/free-photo/caramel-popcorn-cacao-with-whipped-cream-unhealthy-food_501050-684.jpg"},
|
||||
{
|
||||
id: "p5", brand: "iyycburg", name: "Double Burger", price: "$12.99", rating: 5,
|
||||
reviewCount: "800", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-burger-with-buns-cheese_23-2150887826.jpg"},
|
||||
{
|
||||
id: "p6", brand: "iyycburg", name: "Butter Chicken Poutine", price: "$13.99", rating: 5,
|
||||
reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/french-fries-with-sauces-white-plate_114579-19757.jpg"},
|
||||
{ id: "p1", brand: "iyycburg", name: "Double Burger", price: "$12.99", rating: 5, reviewCount: "800", imageSrc: "http://img.b2bpic.net/free-photo/tasty-hamburger-with-flying-ingredients-splash-sauce-dark-background_90220-1269.jpg" },
|
||||
{ id: "p2", brand: "iyycburg", name: "Smashed Samosa Burger", price: "$11.99", rating: 5, reviewCount: "450", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cheesy-meat-burger-with-seasonings-dark-surface-bun-sandwich-fast-food_140725-82153.jpg" },
|
||||
{ id: "p3", brand: "iyycburg", name: "Butter Chicken Poutine", price: "$13.99", rating: 5, reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/chicken-pieces-skewers-served-with-french-fries-mayonnaise-ketchup_141793-1878.jpg" },
|
||||
{ id: "p4", brand: "iyycburg", name: "Coffee Crisp Milkshake", price: "$9.99", rating: 5, reviewCount: "250", imageSrc: "http://img.b2bpic.net/free-photo/caramel-popcorn-cacao-with-whipped-cream-unhealthy-food_501050-684.jpg" },
|
||||
{ id: "p5", brand: "iyycburg", name: "Double Burger", price: "$12.99", rating: 5, reviewCount: "800", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-burger-with-buns-cheese_23-2150887826.jpg" },
|
||||
{ id: "p6", brand: "iyycburg", name: "Butter Chicken Poutine", price: "$13.99", rating: 5, reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/french-fries-with-sauces-white-plate_114579-19757.jpg" },
|
||||
]}
|
||||
title="Signature Menu Items"
|
||||
description="Freshly smashed burgers, creative poutines, and hand-spun milkshakes."
|
||||
@@ -129,14 +110,10 @@ export default function LandingPage() {
|
||||
title="Why iyycburg?"
|
||||
description="Why customers choose us over and over again."
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1", title: "100% Alberta Beef", content: "Never frozen, ground in-house, and smashed to perfection daily."},
|
||||
{
|
||||
id: "2", title: "Halal Certified", content: "Quality you can trust, every bite certified."},
|
||||
{
|
||||
id: "3", title: "Signature Sides", content: "Our famous Butter Chicken Poutine, Samosa Poutine, and crispy tots."},
|
||||
{
|
||||
id: "4", title: "Easy Ordering", content: "Dine-in, pickup, or delivery via Skip & DoorDash."},
|
||||
{ id: "1", title: "100% Alberta Beef", content: "Never frozen, ground in-house, and smashed to perfection daily." },
|
||||
{ id: "2", title: "Halal Certified", content: "Quality you can trust, every bite certified." },
|
||||
{ id: "3", title: "Signature Sides", content: "Our famous Butter Chicken Poutine, Samosa Poutine, and crispy tots." },
|
||||
{ id: "4", title: "Easy Ordering", content: "Dine-in, pickup, or delivery via Skip & DoorDash." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/closeup-slicing-pepper_1398-4435.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -149,21 +126,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Bradley R.", handle: "@brad", testimonial: "Easily one of the best burgers I've had.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-sitting-bar-counter-restaurant_23-2147861981.jpg"},
|
||||
{
|
||||
id: "2", name: "Riya S.", handle: "@riya", testimonial: "The samosa burger was absolutely delicious.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-healthy-young-woman-with-orange-hand-drinks-freshly-squeezed-juice-from_1258-198430.jpg"},
|
||||
{
|
||||
id: "3", name: "Pro Pm", handle: "@propm", testimonial: "A real gem in Calgary.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-watching-tv-eating-burger-living-room-after-work-young-adult-enjoying-fast-food-delivery-meal-dinner-while-sitting-sofa-laughing-television-screen_482257-28773.jpg"},
|
||||
{
|
||||
id: "4", name: "John Doe", handle: "@john", testimonial: "Incredible flavours and texture.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-hipster-dressed-leather-jacket-eating-vegan-burger_613910-508.jpg"},
|
||||
{
|
||||
id: "5", name: "Jane Smith", handle: "@jane", testimonial: "Service is always fast and friendly.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-19629.jpg"},
|
||||
{ id: "1", name: "Bradley R.", handle: "@brad", testimonial: "Easily one of the best burgers I've had.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-man-sitting-bar-counter-restaurant_23-2147861981.jpg" },
|
||||
{ id: "2", name: "Riya S.", handle: "@riya", testimonial: "The samosa burger was absolutely delicious.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-healthy-young-woman-with-orange-hand-drinks-freshly-squeezed-juice-from_1258-198430.jpg" },
|
||||
{ id: "3", name: "Pro Pm", handle: "@propm", testimonial: "A real gem in Calgary.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/business-woman-watching-tv-eating-burger-living-room-after-work-young-adult-enjoying-fast-food-delivery-meal-dinner-while-sitting-sofa-laughing-television-screen_482257-28773.jpg" },
|
||||
{ id: "4", name: "John Doe", handle: "@john", testimonial: "Incredible flavours and texture.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/attractive-hipster-dressed-leather-jacket-eating-vegan-burger_613910-508.jpg" },
|
||||
{ id: "5", name: "Jane Smith", handle: "@jane", testimonial: "Service is always fast and friendly.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-19629.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Fans Say"
|
||||
@@ -176,20 +143,13 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "loc1", title: "Sage Hill", content: "129 Sage Valley, Sage Hill Common NW | (825) 407-8620"},
|
||||
{
|
||||
id: "loc2", title: "Sundance", content: "19 Sunmills Drive SE | (825) 205-6088"},
|
||||
{
|
||||
id: "loc3", title: "Hillhurst", content: "234 19th Street NW | (403) 289-3289"},
|
||||
{
|
||||
id: "loc4", title: "Marda Loop", content: "1950 33 Ave SW | (587) 291-8376"},
|
||||
{
|
||||
id: "loc5", title: "Elbow Drive", content: "9620 Elbow Dr SW | (403) 259-4649"},
|
||||
{
|
||||
id: "loc6", title: "Canmore", content: "837 8 St #102 | (403) 675-0148"},
|
||||
{
|
||||
id: "loc7", title: "Banff", content: "Cascade Shops, 317 Banff Ave | (250) 939-9034"},
|
||||
{ id: "loc1", title: "Sage Hill", content: "129 Sage Valley, Sage Hill Common NW | (825) 407-8620" },
|
||||
{ id: "loc2", title: "Sundance", content: "19 Sunmills Drive SE | (825) 205-6088" },
|
||||
{ id: "loc3", title: "Hillhurst", content: "234 19th Street NW | (403) 289-3289" },
|
||||
{ id: "loc4", title: "Marda Loop", content: "1950 33 Ave SW | (587) 291-8376" },
|
||||
{ id: "loc5", title: "Elbow Drive", content: "9620 Elbow Dr SW | (403) 259-4649" },
|
||||
{ id: "loc6", title: "Canmore", content: "837 8 St #102 | (403) 675-0148" },
|
||||
{ id: "loc7", title: "Banff", content: "Cascade Shops, 317 Banff Ave | (250) 939-9034" },
|
||||
]}
|
||||
title="Our Calgary Locations"
|
||||
description="Find us across 7 convenient locations from Sundance to Banff."
|
||||
@@ -214,34 +174,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Menu", href: "#menu"},
|
||||
{
|
||||
label: "Locations", href: "#locations"},
|
||||
{
|
||||
label: "Order Now", href: "#order-now"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact", href: "#"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "TikTok", href: "#"},
|
||||
{
|
||||
label: "Facebook", href: "#"},
|
||||
],
|
||||
},
|
||||
{ items: [ { label: "Menu", href: "#menu" }, { label: "Locations", href: "#locations" }, { label: "Order Now", href: "#order-now" } ] },
|
||||
{ items: [ { label: "Contact", href: "#" }, { label: "Privacy Policy", href: "#" } ] },
|
||||
{ items: [ { label: "Instagram", href: "#" }, { label: "TikTok", href: "#" }, { label: "Facebook", href: "#" } ] },
|
||||
]}
|
||||
logoText="iyycburg"
|
||||
/>
|
||||
@@ -249,4 +184,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user