7 Commits

Author SHA1 Message Date
855f6d07c1 Update src/app/page.tsx 2026-05-09 03:44:06 +00:00
3f7b3ee41e Update src/app/page.tsx 2026-05-09 03:43:43 +00:00
d00cf88fcb Merge version_2 into main
Merge version_2 into main
2026-05-09 03:40:59 +00:00
635b6e70ce Update src/app/page.tsx 2026-05-09 03:40:53 +00:00
a32aea4582 Merge version_1 into main
Merge version_1 into main
2026-05-09 03:38:51 +00:00
ae2f52b9f3 Merge version_1 into main
Merge version_1 into main
2026-05-09 03:38:24 +00:00
93a56af57f Merge version_1 into main
Merge version_1 into main
2026-05-09 03:37:55 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import FooterCard from '@/components/sections/footer/FooterCard';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
@@ -49,7 +49,7 @@ export default function LandingPage() {
buttons={[{ text: "ابدأ الآن", href: "#" }]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/table-with-vegetables-tablet_1112-344.jpg?_wi=1", imageAlt: "تطبيق مونة البيت" },
{ imageSrc: "http://img.b2bpic.net/free-photo/person-holding-phone-jar-pasta_482257-109981.jpg", imageAlt: "قائمة المقاضي الذكية" },
{ imageSrc: "http://img.b2bpic.net/free-photo/person-holding-phone-jar-pasta_482257-109981.jpg?_wi=1", imageAlt: "قائمة المقاضي الذكية" },
{ imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-vegetables-tablet_23-2148478235.jpg", imageAlt: "إدارة المخزون" },
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-with-tablet-kitchen_23-2148018394.jpg", imageAlt: "تنبيهات الانتهاء" },
{ imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-checking-recipe-notes-notebook-standing-kitchen-with-vegetables-cooking-food_1258-198087.jpg", imageAlt: "وصفات سعودية" },
@@ -70,14 +70,16 @@ export default function LandingPage() {
</div>
<div id="features" data-section="features">
<FeatureCardSixteen
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
negativeCard={{ items: ["تكرار الشراء غير الضروري", "هدر المواد الغذائية", "نسيان قائمة المقاضي"] }}
positiveCard={{ items: ["مخزون منظم دائماً", "قائمة تسوق تشاركية", "تنبيهات ذكية للانتهاء"] }}
title="حل جذري لمشاكل المطبخ"
description="توقف عن الفوضى وابدأ رحلة التنظيم الذكي للمنزل"
features={[
{ id: "f1", title: "إدارة المخزون", descriptions: ["تتبع دقيق للمؤن والمكونات المتاحة", "نظام تنبيهات ذكي لموعد انتهاء الصلاحية"], imageSrc: "http://img.b2bpic.net/free-photo/table-with-vegetables-tablet_1112-344.jpg?_wi=1" },
{ id: "f2", title: "قائمة التسوق", descriptions: ["قائمة مقاضي ذكية وموحدة لجميع أفراد العائلة", "إضافة العناصر تلقائياً عند نفاذ المخزون"], imageSrc: "http://img.b2bpic.net/free-photo/person-holding-phone-jar-pasta_482257-109981.jpg?_wi=2" }
]}
/>
</div>
@@ -151,20 +153,27 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactSplitForm
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="تواصل معنا"
title="هل لديك اقتراحات؟"
description="نسعد دائماً بسماع آرائكم لتطوير مونة البيت"
buttons={[{ text: "أرسل رسالة", href: "#" }]}
title="تواصل معنا"
description="هل لديك اقتراحات؟ نسعد دائماً بسماع آرائكم لتطوير مونة البيت."
inputs={[
{ name: "name", type: "text", placeholder: "الاسم الكامل", required: true },
{ name: "email", type: "email", placeholder: "البريد الإلكتروني", required: true }
]}
textarea={{ name: "message", placeholder: "رسالتك هنا...", rows: 4, required: true }}
buttonText="أرسل الرسالة"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterLogoEmphasis
logoText="مونة البيت"
copyrightText="© 2026 مونة البيت | جميع الحقوق محفوظة"
columns={[
{ items: [{ label: "الرئيسية", href: "#" }, { label: "عن التطبيق", href: "#" }] },
{ items: [{ label: "المميزات", href: "#" }, { label: "الأسعار", href: "#" }] },
{ items: [{ label: "سياسة الخصوصية", href: "#" }, { label: "شروط الاستخدام", href: "#" }] }
]}
/>
</div>
</ReactLenis>