6 Commits

Author SHA1 Message Date
33358f7676 Update src/app/page.tsx 2026-05-25 05:16:18 +00:00
40852cedb6 Update src/app/page.tsx 2026-05-25 05:15:46 +00:00
d651019f20 Update src/app/page.tsx 2026-05-25 05:15:19 +00:00
dd52490bad Update src/app/page.tsx 2026-05-25 05:15:04 +00:00
6f2bf392d7 Merge version_2 into main
Merge version_2 into main
2026-05-25 05:13:44 +00:00
20da18e89e Merge version_2 into main
Merge version_2 into main
2026-05-25 05:13:18 +00:00

View File

@@ -3,12 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric'; import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Award, TrendingUp, Users } from "lucide-react"; import { Award, TrendingUp, Users } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -29,50 +31,52 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "الرئيسية", id: "home" }, { name: "Home", id: "home" },
{ name: "عن الشركة", id: "about" }, { name: "About", id: "about" },
{ name: "خدماتنا", id: "services" }, { name: "Testimonials", id: "testimonials" },
{ name: "اتصل بنا", id: "contact" }, { name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]} ]}
brandName="BusinessPro العربية" brandName="BusinessPro"
button={{ text: "تواصل", href: "#contact" }} button={{ text: "Get Started", href: "#contact" }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroOverlay <HeroOverlay
title="تمكين رؤية أعمالك في المملكة" title="Elevating Your Business Vision"
description="نقدم استراتيجيات مبتكرة وحلول عالية الجودة لمساعدة أعمالك على النمو بكفاءة في السوق السعودي والعالمي." description="We provide innovative strategies and high-quality solutions to help your business scale efficiently in the modern marketplace."
buttons={[{ text: "ابدأ الآن", href: "#contact" }]} buttons={[{ text: "Get Started", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/angry-female-ceo-yelling-her-executive-assistants-due-business-failure_482257-120044.jpg" imageSrc="http://img.b2bpic.net/free-photo/angry-female-ceo-yelling-her-executive-assistants-due-business-failure_482257-120044.jpg"
showBlur={true}
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<AboutMetric <AboutMetric
title="نمو مدفوع بالأداء" useInvertedBackground={false}
title="Impact Driven Growth"
metrics={[ metrics={[
{ icon: Users, label: "عملاؤنا", value: "500+" }, { icon: Users, label: "Clients Served", value: "500+" },
{ icon: TrendingUp, label: "معدل النمو", value: "150%" }, { icon: TrendingUp, label: "Growth Rate", value: "150%" },
{ icon: Award, label: "الجوائز", value: "25+" }, { icon: Award, label: "Awards Won", value: "25+" },
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
useInvertedBackground={false}
/> />
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureCardTwentyOne <FeatureCardTwentyOne
title="خدمات الأعمال الشاملة"
description="نقدم خدمات استراتيجية متكاملة لدعم نمو وتحسين أعمالكم."
accordionItems={[
{ id: "f1", title: "الاستشارات الاستراتيجية", content: "خرائط طريق مخصصة لنمو مستدام." },
{ id: "f2", title: "التحول الرقمي", content: "تحديث الأنظمة باستخدام أحدث التقنيات." },
{ id: "f3", title: "تطوير العلامة التجارية", content: "بناء هويات تجارية قوية ومؤثرة." },
]}
videoSrc="https://www.w3schools.com/html/mov_bbb.mp4"
mediaAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
title="Comprehensive Business Services"
description="Explore our core services tailored for modern business growth and optimization."
accordionItems={[
{ id: "f1", title: "Strategic Consulting", content: "Tailored roadmaps for sustainable growth." },
{ id: "f2", title: "Digital Transformation", content: "Modernizing legacy systems with latest tech." },
{ id: "f3", title: "Brand Development", content: "Creating identities that resonate globally." },
]}
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-leaders-business-meeting-brainstorming-growth-strategy_482257-124049.jpg"
/> />
</div> </div>
@@ -81,38 +85,67 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
textboxLayout="split" textboxLayout="split"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
products={[
{ id: "p1", name: "مجموعة البداية", price: "١٩٩$", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-office-desk-arrangement_23-2148707946.jpg" },
{ id: "p2", name: "تحليلات برو", price: "٤٩٩$", imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-carpenter-showing-digital-tablet-his-hand_23-2147945078.jpg" },
]}
title="أدوات استراتيجية"
description="موارد متميزة لدفع مسيرة عملك."
useInvertedBackground={false} useInvertedBackground={false}
products={[
{ id: "p1", name: "Starter Toolkit", price: "$199", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-office-desk-arrangement_23-2148707946.jpg" },
{ id: "p2", name: "Analytics Pro", price: "$499", imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-carpenter-showing-digital-tablet-his-hand_23-2147945078.jpg" },
{ id: "p3", name: "SaaS Platform", price: "$899", imageSrc: "http://img.b2bpic.net/free-photo/staistics-business-strategy-planning-research-digital-tablet-concept_53876-26413.jpg" },
]}
title="Strategic Toolkits"
description="Premium resources and tools to jumpstart your business operations."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="Customer Success Stories"
description="What our partners say about working with us."
showRating={true}
useInvertedBackground={false}
animationType="slide-up"
textboxLayout="default"
testimonials={[
{ id: "t1", name: "Sarah Miller", handle: "@smiller", testimonial: "Exceptional service that doubled our growth in six months.", rating: 5 },
{ id: "t2", name: "John Davis", handle: "@jdavis", testimonial: "The strategic guidance provided was transformative for our firm.", rating: 5 },
{ id: "t3", name: "Amira Khalid", handle: "@akhalid", testimonial: "Professionalism and efficiency at every step of the project.", rating: 5 },
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
title="Installment Questions"
description="Everything you need to know about our payment plans."
faqsAnimation="slide-up"
useInvertedBackground={false}
textboxLayout="split"
faqs={[
{ id: "q1", title: "What installment plans do you offer?", content: "We offer flexible monthly and quarterly payment plans for our consulting packages." },
{ id: "q2", title: "Is there interest on installments?", content: "Our installment plans are 0% interest for all business contracts signed before the end of the year." },
{ id: "q3", title: "Can I pay early?", content: "Yes, you can settle your installment plan balance at any time without penalties." },
]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactText
tag="تواصل معنا" text="Our office in Saudi Arabia is ready to assist you. Contact us for local inquiries."
title="هل أنت مستعد لتطوير عملك؟"
description="نحن هنا لدعم نمو أعمالك في المملكة العربية السعودية. تواصل معنا اليوم."
buttonText="إرسال"
background={{ variant: "animated-grid" }}
useInvertedBackground={false} useInvertedBackground={false}
background={{ variant: "plain" }}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterBase
logoText="BusinessPro" logoText="BusinessPro"
copyrightText="© 2025 BusinessPro Saudi Arabia. All rights reserved."
columns={[ columns={[
{ title: "عن الشركة", items: [{ label: "من نحن", href: "#" }] }, { title: "Company", items: [{ label: "About", href: "#about" }, { label: "Contact", href: "#contact" }] },
{ title: "خدماتنا", items: [{ label: "الاستشارات", href: "#" }] } { title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]} ]}
copyrightText="© 2025 جميع الحقوق محفوظة لشركة BusinessPro"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }