Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -6,9 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import { Utensils } from "lucide-react";
|
||||
import { Utensils, Beef, Leaf, Scroll, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -25,24 +25,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Shah’s Halal Food"
|
||||
/>
|
||||
</div>
|
||||
@@ -67,34 +50,10 @@ export default function LandingPage() {
|
||||
title="Our Values"
|
||||
description="Quality, Community, and Passion define us."
|
||||
features={[
|
||||
{
|
||||
title: "Premium Meats",
|
||||
description: "Only the best cuts.",
|
||||
buttonIcon: "Beef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-with-delicious-high-protein-vegan-meal_23-2149039399.jpg?_wi=1",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{
|
||||
title: "Fresh Vegetables",
|
||||
description: "Daily arrivals.",
|
||||
buttonIcon: "Leaf",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg?_wi=3",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{
|
||||
title: "Traditional Recipes",
|
||||
description: "Authentic taste.",
|
||||
buttonIcon: "Scroll",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg?_wi=3",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{
|
||||
title: "Modern Approach",
|
||||
description: "Reinventing the classics.",
|
||||
buttonIcon: "Sparkles",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg?_wi=3",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{ title: "Premium Meats", description: "Only the best cuts.", buttonIcon: Beef, imageSrc: "http://img.b2bpic.net/free-photo/assortment-with-delicious-high-protein-vegan-meal_23-2149039399.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
{ title: "Fresh Vegetables", description: "Daily arrivals.", buttonIcon: Leaf, imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
{ title: "Traditional Recipes", description: "Authentic taste.", buttonIcon: Scroll, imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
{ title: "Modern Approach", description: "Reinventing the classics.", buttonIcon: Sparkles, imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -103,36 +62,8 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Shah’s Halal Food"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -6,8 +6,9 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import { MapPin, Car, Clock, Truck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -24,24 +25,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Shah’s Halal Food"
|
||||
/>
|
||||
</div>
|
||||
@@ -49,9 +33,7 @@ export default function LandingPage() {
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Get in Touch"
|
||||
description="Visit us in Watford or order online for delivery."
|
||||
tag="Contact"
|
||||
@@ -65,34 +47,10 @@ export default function LandingPage() {
|
||||
title="Visit Us"
|
||||
description="Find our flagship store in Watford."
|
||||
features={[
|
||||
{
|
||||
title: "Central Location",
|
||||
description: "Easy access.",
|
||||
buttonIcon: "MapPin",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-with-delicious-high-protein-vegan-meal_23-2149039399.jpg?_wi=2",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{
|
||||
title: "Parking Available",
|
||||
description: "Hassle-free visits.",
|
||||
buttonIcon: "Car",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg?_wi=4",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{
|
||||
title: "Opening Hours",
|
||||
description: "Daily till late.",
|
||||
buttonIcon: "Clock",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg?_wi=4",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{
|
||||
title: "Delivery",
|
||||
description: "To your doorstep.",
|
||||
buttonIcon: "Truck",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg?_wi=4",
|
||||
imageAlt: "Assortment with delicious high protein vegan meal",
|
||||
},
|
||||
{ title: "Central Location", description: "Easy access.", buttonIcon: MapPin, imageSrc: "http://img.b2bpic.net/free-photo/assortment-with-delicious-high-protein-vegan-meal_23-2149039399.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
{ title: "Parking Available", description: "Hassle-free visits.", buttonIcon: Car, imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
{ title: "Opening Hours", description: "Daily till late.", buttonIcon: Clock, imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
{ title: "Delivery", description: "To your doorstep.", buttonIcon: Truck, imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg", imageAlt: "Assortment with delicious high protein vegan meal" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -101,36 +59,8 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Shah’s Halal Food"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
227
src/app/page.tsx
227
src/app/page.tsx
@@ -9,6 +9,7 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import { ChefHat, Zap, Smile, ShieldCheck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -28,22 +29,9 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Shah’s Halal Food"
|
||||
/>
|
||||
@@ -51,52 +39,17 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
title="Street Food. Elevated."
|
||||
description="Authentic halal flavours reimagined for the modern palate in the heart of Watford."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Order Now", href: "#" }, { text: "Menu", href: "/menu" }]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg?_wi=1",
|
||||
imageAlt: "Hero dish 1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg?_wi=1",
|
||||
imageAlt: "Hero dish 2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg?_wi=1",
|
||||
imageAlt: "Hero dish 3",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-nuggets-with-french-fries-human-hand-fly_176474-2697.jpg",
|
||||
imageAlt: "Hero dish 4",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tortilla-wrap-with-falafel-vegetables-yellow-background_123827-20315.jpg",
|
||||
imageAlt: "Hero dish 5",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-food-chicken-fried-with-sauce-rice-served-plate_1220-7132.jpg",
|
||||
imageAlt: "Hero dish 6",
|
||||
},
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg", imageAlt: "Hero dish 1" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg", imageAlt: "Hero dish 2" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg", imageAlt: "Hero dish 3" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/chicken-nuggets-with-french-fries-human-hand-fly_176474-2697.jpg", imageAlt: "Hero dish 4" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/tortilla-wrap-with-falafel-vegetables-yellow-background_123827-20315.jpg", imageAlt: "Hero dish 5" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/asian-food-chicken-fried-with-sauce-rice-served-plate_1220-7132.jpg", imageAlt: "Hero dish 6" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -107,41 +60,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Khan",
|
||||
role: "Local Guide",
|
||||
testimonial: "The best halal food in Watford, bar none. The quality is simply elite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-plate-with-muffin_107420-12322.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "John Doe",
|
||||
role: "Foodie",
|
||||
testimonial: "Everything tastes fresh, bold, and perfectly spiced. High-end street food!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-female-student-eating-fast-food-fast-food-cheat-meal_169016-67586.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Smith",
|
||||
role: "Regular",
|
||||
testimonial: "Finally, a halal place that gets the premium balance right. Love it.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-are-going-eat-fried-chicken-with-vegetables-potato-lavash-sour-cream-lemonade-side-view_141793-12283.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Michael A.",
|
||||
role: "Diner",
|
||||
testimonial: "Fast service, great portions, and that gold-standard flavor in every bite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Zara T.",
|
||||
role: "Critic",
|
||||
testimonial: "The chicken over rice is legendary. Seriously, a must-try experience.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-sushi-park-picnic-nature_169016-22794.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah Khan", role: "Local Guide", testimonial: "The best halal food in Watford, bar none. The quality is simply elite.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-plate-with-muffin_107420-12322.jpg" },
|
||||
{ id: "2", name: "John Doe", role: "Foodie", testimonial: "Everything tastes fresh, bold, and perfectly spiced. High-end street food!", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-female-student-eating-fast-food-fast-food-cheat-meal_169016-67586.jpg" },
|
||||
{ id: "3", name: "Emily Smith", role: "Regular", testimonial: "Finally, a halal place that gets the premium balance right. Love it.", imageSrc: "http://img.b2bpic.net/free-photo/man-are-going-eat-fried-chicken-with-vegetables-potato-lavash-sour-cream-lemonade-side-view_141793-12283.jpg" },
|
||||
{ id: "4", name: "Michael A.", role: "Diner", testimonial: "Fast service, great portions, and that gold-standard flavor in every bite.", imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg" },
|
||||
{ id: "5", name: "Zara T.", role: "Critic", testimonial: "The chicken over rice is legendary. Seriously, a must-try experience.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-sushi-park-picnic-nature_169016-22794.jpg" },
|
||||
]}
|
||||
title="What Our Foodies Say"
|
||||
description="Consistently rated 4.9/5 across all platforms."
|
||||
@@ -155,48 +78,12 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Chicken Over Rice",
|
||||
price: "£12.95",
|
||||
variant: "Best Seller",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-vegetables-dark-color-gray-sauce-meal-dish-hot-food-meat-potato-photo_140725-145570.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Gyro Platter",
|
||||
price: "£14.95",
|
||||
variant: "Classic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-tasty-shawarma-dish_23-2151805467.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Loaded Fries",
|
||||
price: "£7.95",
|
||||
variant: "Popular",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-french-fries-with-sauces-dark_140725-104455.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Falafel Wrap",
|
||||
price: "£8.50",
|
||||
variant: "Vegetarian",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arabic-kebab-sandwich-wooden-board_23-2148651109.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Lamb Combo",
|
||||
price: "£15.50",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-prepared-meal_23-2149043035.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Veggie Bowl",
|
||||
price: "£9.95",
|
||||
variant: "Healthy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/iskender-kebab-garnished-with-tomato-sauce-pepper-served-with-yoghurt_140725-579.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Chicken Over Rice", price: "£12.95", variant: "Best Seller", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-vegetables-dark-color-gray-sauce-meal-dish-hot-food-meat-potato-photo_140725-145570.jpg" },
|
||||
{ id: "p2", name: "Gyro Platter", price: "£14.95", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/view-tasty-shawarma-dish_23-2151805467.jpg" },
|
||||
{ id: "p3", name: "Loaded Fries", price: "£7.95", variant: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-french-fries-with-sauces-dark_140725-104455.jpg" },
|
||||
{ id: "p4", name: "Falafel Wrap", price: "£8.50", variant: "Vegetarian", imageSrc: "http://img.b2bpic.net/free-photo/arabic-kebab-sandwich-wooden-board_23-2148651109.jpg" },
|
||||
{ id: "p5", name: "Lamb Combo", price: "£15.50", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-prepared-meal_23-2149043035.jpg" },
|
||||
{ id: "p6", name: "Veggie Bowl", price: "£9.95", variant: "Healthy", imageSrc: "http://img.b2bpic.net/free-photo/iskender-kebab-garnished-with-tomato-sauce-pepper-served-with-yoghurt_140725-579.jpg" },
|
||||
]}
|
||||
title="Signature Dishes"
|
||||
description="Hand-crafted halal delicacies that redefine street dining standards."
|
||||
@@ -208,34 +95,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Fresh Ingredients",
|
||||
description: "Sourced daily for maximum flavour.",
|
||||
buttonIcon: "ChefHat",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-tray_23-2149358118.jpg",
|
||||
imageAlt: "Top view delicious food on tray",
|
||||
},
|
||||
{
|
||||
title: "Big Portions",
|
||||
description: "Always enough to satisfy your craving.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg?_wi=2",
|
||||
imageAlt: "Top view delicious food on tray",
|
||||
},
|
||||
{
|
||||
title: "Friendly Staff",
|
||||
description: "Serving with a smile, every single time.",
|
||||
buttonIcon: "Smile",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg?_wi=2",
|
||||
imageAlt: "Top view delicious food on tray",
|
||||
},
|
||||
{
|
||||
title: "Quality Food",
|
||||
description: "Halal certified and meticulously prepared.",
|
||||
buttonIcon: "ShieldCheck",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg?_wi=2",
|
||||
imageAlt: "Top view delicious food on tray",
|
||||
},
|
||||
{ title: "Fresh Ingredients", description: "Sourced daily for maximum flavour.", buttonIcon: ChefHat, imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-tray_23-2149358118.jpg", imageAlt: "Top view delicious food on tray" },
|
||||
{ title: "Big Portions", description: "Always enough to satisfy your craving.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/shaurma-roasted-potatoes-dip-dressing_114579-1139.jpg", imageAlt: "Top view delicious food on tray" },
|
||||
{ title: "Friendly Staff", description: "Serving with a smile, every single time.", buttonIcon: Smile, imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-consists-tomatoes-olives-peppers-dark-background-health-diet-meal-snack-salad_140725-96827.jpg", imageAlt: "Top view delicious food on tray" },
|
||||
{ title: "Quality Food", description: "Halal certified and meticulously prepared.", buttonIcon: ShieldCheck, imageSrc: "http://img.b2bpic.net/free-photo/sadj-with-various-sliced-vegetables-meat_140725-3816.jpg", imageAlt: "Top view delicious food on tray" },
|
||||
]}
|
||||
title="Why Choose Us?"
|
||||
description="We don't just cook food; we craft experiences that respect traditional halal values."
|
||||
@@ -245,9 +108,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Join Our Inner Circle"
|
||||
description="Sign up for exclusive offers and secret menu access."
|
||||
tag="Join Us"
|
||||
@@ -258,36 +119,8 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Shah’s Halal Food"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user