diff --git a/src/app/ar/page.tsx b/src/app/ar/page.tsx index f6bdaf5..59f7d04 100644 --- a/src/app/ar/page.tsx +++ b/src/app/ar/page.tsx @@ -2,17 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import MediaAbout from '@/components/sections/about/MediaAbout'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import { Cloud, Cog, Lightbulb, Mail, ShieldCheck, Star } from "lucide-react"; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Star, Lightbulb, Cog, Cloud, ShieldCheck, Mail } from 'lucide-react'; -export default function LandingPage() { +export default function LandingPageAR() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); diff --git a/src/app/page.tsx b/src/app/page.tsx index 436db7e..839d932 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -55,7 +55,11 @@ export default function LandingPage() { imageAlt="Network connections" title="Our Story & Mission" description="We are a company dedicated to innovation and excellence, striving to deliver cutting-edge solutions for our clients." - bulletPoints={["Innovation driven", "Client-focused", "Excellence in execution"]} + bulletPoints={[ + { title: "Innovation driven", description: "Driving innovation across all our solutions." }, + { title: "Client-focused", description: "Prioritizing client needs and delivering tailored results." }, + { title: "Excellence in execution", description: "Committing to high-quality execution in every project." } + ]} /> @@ -80,9 +84,11 @@ export default function LandingPage() { description="A dedicated group of professionals passionate about technology and innovation." members={[ { - name: "John Doe", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", imageAlt: "John Doe, CEO"}, + id: "john-doe", name: "John Doe", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", imageAlt: "John Doe, CEO", description: "Leading our company with vision and expertise." + }, { - name: "Jane Smith", role: "CTO", imageSrc: "http://img.b2bpic.net/free-photo/african-american-software-developer-does-visual-coding-creating-software_482257-127024.jpg", imageAlt: "Jane Smith, CTO"}, + id: "jane-smith", name: "Jane Smith", role: "CTO", imageSrc: "http://img.b2bpic.net/free-photo/african-american-software-developer-does-visual-coding-creating-software_482257-127024.jpg", imageAlt: "Jane Smith, CTO", description: "Pioneering our technological advancements." + } ]} /> @@ -95,10 +101,8 @@ export default function LandingPage() { author="Alice Johnson" avatars={[ { - src: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", alt: "Alice Johnson"}, + src: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", alt: "Alice Johnson"} ]} - company="Innovate Solutions" - role="CEO" /> @@ -108,13 +112,12 @@ export default function LandingPage() { onClose={() => {}} items={[ { - id: "item1", name: "Sample Product", price: 99.99, - quantity: 1, - imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241207.jpg", imageAlt: "Sample Product Image"}, + id: "item1", name: "Sample Product", price: "99.99", quantity: 1, + imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241207.jpg", imageAlt: "Sample Product Image"} ]} - total={99.99} + total="99.99" buttons={[ - { text: "Checkout", onClick: () => console.log("Checkout clicked") }, + { text: "Checkout", onClick: () => console.log("Checkout clicked") } ]} />