Update src/app/page.tsx

This commit is contained in:
2026-05-07 20:09:16 +00:00
parent bb5af42334
commit 2d4bd0078e

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -42,29 +42,19 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCentered
<HeroBillboardCarousel
background={{ variant: "plain" }}
title="طعم العراق الأصيل في قلب صوفيا"
description="نقدم لكم أشهى الكباب والمشاوي العراقية المحضرة بحب على الفحم، تجربة طعام دافئة تعيدكم إلى بغداد في كل لقمة."
avatars={[
{ src: "http://img.b2bpic.net/free-photo/cheerful-young-handsome-man-showing-okay-gesture_171337-4396.jpg", alt: "happy middle eastern customer portrait" },
{ src: "http://img.b2bpic.net/free-photo/young-happy-woman-her-boyfriend-reading-text-message-mobile-phone-while-sitting-dining-table_637285-10328.jpg", alt: "smiling middle eastern woman portrait" },
{ src: "http://img.b2bpic.net/free-photo/pensive-man-with-beard-stylish-glasses-spring-outfit-relaxing-work-day-it-company-hipster-outfit_273443-1265.jpg", alt: "satisfied arab man customer portrait" },
{ src: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663837.jpg", alt: "middle eastern professional portrait" },
{ src: "http://img.b2bpic.net/free-photo/woman-working-as-professional-chef_23-2151864218.jpg", alt: "happy middle eastern woman portrait" },
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-handsome-man-showing-okay-gesture_171337-4396.jpg", imageAlt: "happy middle eastern customer portrait" },
{ imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-her-boyfriend-reading-text-message-mobile-phone-while-sitting-dining-table_637285-10328.jpg", imageAlt: "smiling middle eastern woman portrait" },
{ imageSrc: "http://img.b2bpic.net/free-photo/pensive-man-with-beard-stylish-glasses-spring-outfit-relaxing-work-day-it-company-hipster-outfit_273443-1265.jpg", imageAlt: "satisfied arab man customer portrait" },
]}
avatarText="أكثر من 400+ تقييم إيجابي"
buttons={[
{ text: "اطلب الآن", href: "#menu" },
{ text: "اتصل بنا", href: "#contact" },
]}
marqueeItems={[
{ type: "text-icon", text: "مشاوي على الفحم", icon: Flame },
{ type: "text-icon", text: "أجواء عائلية", icon: Home },
{ type: "text-icon", text: "لحم حلال طازج", icon: CheckCircle },
{ type: "text-icon", text: "ضيافة عراقية", icon: Coffee },
{ type: "text-icon", text: "نكهات أصيلة", icon: Sparkles },
]}
/>
</div>
@@ -185,4 +175,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}