Merge version_1 into main #2
244
src/app/page.tsx
244
src/app/page.tsx
@@ -11,7 +11,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import { Facebook, Instagram } from "lucide-react";
|
||||
import { Zap, ChefHat, Coffee, Leaf, Instagram, Facebook } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,22 +31,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Al-Hawrani"
|
||||
/>
|
||||
@@ -54,48 +42,17 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Fresh Mediterranean Flavors"
|
||||
description="Experience the finest fresh catch at Al-Hawrani, where traditional recipes meet modern gourmet excellence."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "View Menu", href: "#products" }]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "c1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-setting_74190-1957.jpg?_wi=1",
|
||||
imageAlt: "Fresh Catch",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-skewers-recipe-idea_53876-100109.jpg?_wi=1",
|
||||
imageAlt: "Gourmet Dish",
|
||||
},
|
||||
{
|
||||
id: "c3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-oysters-with-lemon-ice_93675-129777.jpg?_wi=1",
|
||||
imageAlt: "Fine Dining",
|
||||
},
|
||||
{
|
||||
id: "c4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-raw-seabass-baking-dish-with-spices-old-wooden-table-top-view_2829-20026.jpg",
|
||||
imageAlt: "Mediterranean Style",
|
||||
},
|
||||
{
|
||||
id: "c5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-salmon-fillets-pepper-kiwi-pineapples-rosemary-onto-plate-black-cement-floor_1150-23152.jpg",
|
||||
imageAlt: "Healthy Seafood",
|
||||
},
|
||||
{
|
||||
id: "c6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fish-with-tomatoes-lemon-slices_23-2148643632.jpg",
|
||||
imageAlt: "Premium Quality",
|
||||
},
|
||||
{ id: "c1", imageSrc: "http://img.b2bpic.net/free-photo/table-setting_74190-1957.jpg", imageAlt: "Fresh Catch" },
|
||||
{ id: "c2", imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-skewers-recipe-idea_53876-100109.jpg", imageAlt: "Gourmet Dish" },
|
||||
{ id: "c3", imageSrc: "http://img.b2bpic.net/free-photo/raw-oysters-with-lemon-ice_93675-129777.jpg", imageAlt: "Fine Dining" },
|
||||
{ id: "c4", imageSrc: "http://img.b2bpic.net/free-photo/two-raw-seabass-baking-dish-with-spices-old-wooden-table-top-view_2829-20026.jpg", imageAlt: "Mediterranean Style" },
|
||||
{ id: "c5", imageSrc: "http://img.b2bpic.net/free-photo/raw-salmon-fillets-pepper-kiwi-pineapples-rosemary-onto-plate-black-cement-floor_1150-23152.jpg", imageAlt: "Healthy Seafood" },
|
||||
{ id: "c6", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fish-with-tomatoes-lemon-slices_23-2148643632.jpg", imageAlt: "Premium Quality" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -107,18 +64,9 @@ export default function LandingPage() {
|
||||
title="A Legacy of Freshness"
|
||||
description="For over two decades, Al-Hawrani has been dedicated to serving the freshest seafood, sourced daily from sustainable local markets. Our commitment is to bring the bounty of the ocean to your plate with passion."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Sourced Daily",
|
||||
description: "We handpick our catch every morning.",
|
||||
},
|
||||
{
|
||||
title: "Traditional Recipes",
|
||||
description: "Authentic flavors passed through generations.",
|
||||
},
|
||||
{
|
||||
title: "Sustainability",
|
||||
description: "Supporting local fisheries and ocean health.",
|
||||
},
|
||||
{ title: "Sourced Daily", description: "We handpick our catch every morning." },
|
||||
{ title: "Traditional Recipes", description: "Authentic flavors passed through generations." },
|
||||
{ title: "Sustainability", description: "Supporting local fisheries and ocean health." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crop-hand-cooking-fish_23-2147753657.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -130,34 +78,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Freshness First",
|
||||
description: "Never frozen, always fresh.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-kitchen-interior-design_23-2151821333.jpg",
|
||||
imageAlt: "Futuristic kitchen interior design",
|
||||
},
|
||||
{
|
||||
title: "Expert Chefs",
|
||||
description: "Mastering the art of seafood.",
|
||||
buttonIcon: "ChefHat",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-setting_74190-1957.jpg?_wi=2",
|
||||
imageAlt: "Futuristic kitchen interior design",
|
||||
},
|
||||
{
|
||||
title: "Cozy Ambience",
|
||||
description: "Perfect for family and business.",
|
||||
buttonIcon: "Coffee",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-skewers-recipe-idea_53876-100109.jpg?_wi=2",
|
||||
imageAlt: "Futuristic kitchen interior design",
|
||||
},
|
||||
{
|
||||
title: "Sustainable Catch",
|
||||
description: "Respecting marine biodiversity.",
|
||||
buttonIcon: "Leaf",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-oysters-with-lemon-ice_93675-129777.jpg?_wi=2",
|
||||
imageAlt: "Futuristic kitchen interior design",
|
||||
},
|
||||
{ title: "Freshness First", description: "Never frozen, always fresh.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/futuristic-kitchen-interior-design_23-2151821333.jpg", imageAlt: "Futuristic kitchen interior design" },
|
||||
{ title: "Expert Chefs", description: "Mastering the art of seafood.", buttonIcon: ChefHat, imageSrc: "http://img.b2bpic.net/free-photo/table-setting_74190-1957.jpg", imageAlt: "Futuristic kitchen interior design" },
|
||||
{ title: "Cozy Ambience", description: "Perfect for family and business.", buttonIcon: Coffee, imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-skewers-recipe-idea_53876-100109.jpg", imageAlt: "Futuristic kitchen interior design" },
|
||||
{ title: "Sustainable Catch", description: "Respecting marine biodiversity.", buttonIcon: Leaf, imageSrc: "http://img.b2bpic.net/free-photo/raw-oysters-with-lemon-ice_93675-129777.jpg", imageAlt: "Futuristic kitchen interior design" }
|
||||
]}
|
||||
title="Why Choose Us?"
|
||||
description="Our dedication to quality and experience sets us apart."
|
||||
@@ -171,42 +95,12 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Grilled Seabass",
|
||||
price: "$28",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-fish-with-lemons-greens-brown-desk_140725-91011.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Signature Seafood Paella",
|
||||
price: "$45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-background-with-dish-boiled-vongole-clams-table-cafe-with-copy-space-idea-splash-screen-banner_166373-2956.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Garlic Shrimp Skewers",
|
||||
price: "$22",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-closeup_624325-1758.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Pan-seared Salmon",
|
||||
price: "$32",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-salmon-meat-steak_74190-1353.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Crispy Calamari",
|
||||
price: "$18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-shrimp-with-sauce-plate_141793-11283.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Royal Platter",
|
||||
price: "$85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/seafood-cleaning-process-kitchen_23-2150171435.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Grilled Seabass", price: "$28", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-fish-with-lemons-greens-brown-desk_140725-91011.jpg" },
|
||||
{ id: "p2", name: "Signature Seafood Paella", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/blurred-background-with-dish-boiled-vongole-clams-table-cafe-with-copy-space-idea-splash-screen-banner_166373-2956.jpg" },
|
||||
{ id: "p3", name: "Garlic Shrimp Skewers", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-closeup_624325-1758.jpg" },
|
||||
{ id: "p4", name: "Pan-seared Salmon", price: "$32", imageSrc: "http://img.b2bpic.net/free-photo/grilled-salmon-meat-steak_74190-1353.jpg" },
|
||||
{ id: "p5", name: "Crispy Calamari", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-shrimp-with-sauce-plate_141793-11283.jpg" },
|
||||
{ id: "p6", name: "Royal Platter", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/seafood-cleaning-process-kitchen_23-2150171435.jpg" }
|
||||
]}
|
||||
title="Our Signature Dishes"
|
||||
description="From grilled fish to artisanal seafood platters, taste the magic."
|
||||
@@ -220,21 +114,9 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15k+",
|
||||
description: "Happy Guests Served",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "22",
|
||||
description: "Years of Excellence",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "50+",
|
||||
description: "Unique Fish Varieties",
|
||||
},
|
||||
{ id: "m1", value: "15k+", description: "Happy Guests Served" },
|
||||
{ id: "m2", value: "22", description: "Years of Excellence" },
|
||||
{ id: "m3", value: "50+", description: "Unique Fish Varieties" }
|
||||
]}
|
||||
title="Serving Joy Since 2002"
|
||||
description="Our numbers reflect our passion and commitment to the community."
|
||||
@@ -246,46 +128,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Amazing Place",
|
||||
quote: "The best seafood experience in town. Fresh and flavorful.",
|
||||
name: "Ahmed K.",
|
||||
role: "Food Blogger",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-dinner_23-2148060527.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Hidden Gem",
|
||||
quote: "Authentic recipes, great atmosphere, definitely coming back.",
|
||||
name: "Sarah M.",
|
||||
role: "Regular Guest",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Outstanding Catch",
|
||||
quote: "Freshness like this is rare. The seabass was cooked perfectly.",
|
||||
name: "David W.",
|
||||
role: "Gourmet Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269174.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Family Favorite",
|
||||
quote: "Lovely evening. My family enjoyed every bit of the paella.",
|
||||
name: "Layla F.",
|
||||
role: "Regular Guest",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Exquisite",
|
||||
quote: "The quality of ingredients really shines through.",
|
||||
name: "Mark R.",
|
||||
role: "Foodie",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-smiling-hipster-female-trendy-summer-clothescarefree-women-posing-veranda-cafe-streetpositive-models-drinking-white-wine-hatenjoying-their-vacation_158538-23122.jpg",
|
||||
},
|
||||
{ id: "t1", title: "Amazing Place", quote: "The best seafood experience in town. Fresh and flavorful.", name: "Ahmed K.", role: "Food Blogger", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-dinner_23-2148060527.jpg" },
|
||||
{ id: "t2", title: "Hidden Gem", quote: "Authentic recipes, great atmosphere, definitely coming back.", name: "Sarah M.", role: "Regular Guest", imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg" },
|
||||
{ id: "t3", title: "Outstanding Catch", quote: "Freshness like this is rare. The seabass was cooked perfectly.", name: "David W.", role: "Gourmet Chef", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269174.jpg" },
|
||||
{ id: "t4", title: "Family Favorite", quote: "Lovely evening. My family enjoyed every bit of the paella.", name: "Layla F.", role: "Regular Guest", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg" },
|
||||
{ id: "t5", title: "Exquisite", quote: "The quality of ingredients really shines through.", name: "Mark R.", role: "Foodie", imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-smiling-hipster-female-trendy-summer-clothescarefree-women-posing-veranda-cafe-streetpositive-models-drinking-white-wine-hatenjoying-their-vacation_158538-23122.jpg" }
|
||||
]}
|
||||
title="Guest Stories"
|
||||
description="Hear what our loyal patrons say about Al-Hawrani."
|
||||
@@ -295,16 +142,9 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
text="Join us today for an unforgettable culinary journey at Al-Hawrani."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Your Table",
|
||||
href: "tel:+123456789",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Book Your Table", href: "tel:+123456789" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -313,16 +153,8 @@ export default function LandingPage() {
|
||||
logoText="Al-Hawrani Seafood"
|
||||
copyrightText="© 2025 Al-Hawrani Fish Restaurant. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "#",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user