diff --git a/public/assets/images/brands/chatgpt.webp b/public/assets/images/brands/chatgpt.webp new file mode 100644 index 0000000..2433c6b Binary files /dev/null and b/public/assets/images/brands/chatgpt.webp differ diff --git a/public/assets/images/brands/dall-e-logo.webp b/public/assets/images/brands/dall-e-logo.webp new file mode 100644 index 0000000..213bd03 Binary files /dev/null and b/public/assets/images/brands/dall-e-logo.webp differ diff --git a/public/assets/images/brands/facebook.webp b/public/assets/images/brands/facebook.webp new file mode 100644 index 0000000..519129b Binary files /dev/null and b/public/assets/images/brands/facebook.webp differ diff --git a/public/assets/images/brands/linkedin.webp b/public/assets/images/brands/linkedin.webp new file mode 100644 index 0000000..347bcc9 Binary files /dev/null and b/public/assets/images/brands/linkedin.webp differ diff --git a/public/assets/images/brands/x-twitter.png b/public/assets/images/brands/x-twitter.png new file mode 100644 index 0000000..620533b Binary files /dev/null and b/public/assets/images/brands/x-twitter.png differ diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8623f1d..e280d61 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,6 +2,7 @@ import Image from "next/image" import Link from "next/link" import { ArrowRight, Share2, Instagram, Twitter, Facebook, Linkedin, MapPin, BrainCircuit, Captions, Hash, ChartLine, CalendarCheck } from "lucide-react" import Teams from "@/components/about/Teams" +import Partners from "@/components/about/Partners" export default function AboutPage() { return ( @@ -216,28 +217,8 @@ export default function AboutPage() { {/* Social Proof */} -
-
-
-

Trusted by Businesses Worldwide

-
-
+ -
- {[...Array(6)].map((_, i) => ( -
- {`Company -
- ))} -
-
-
{/* Contact Section */}
diff --git a/src/components/about/Partners.tsx b/src/components/about/Partners.tsx new file mode 100644 index 0000000..023c839 --- /dev/null +++ b/src/components/about/Partners.tsx @@ -0,0 +1,68 @@ +"use client"; +import Image from "next/image"; +import * as React from "react"; + +interface BrandsItem { + id: string; + name: string; + logo: string; +} + +const brands: BrandsItem[] = [ + { + id: "1", + name: "Facebook", + logo: "/assets/images/brands/facebook.webp", + }, + { + id: "2", + name: "X", + logo: "/assets/images/brands/x-twitter.png", + }, + { + id: "3", + name: "LinkedIn", + logo: "/assets/images/brands/linkedin.webp", + }, + { + id: "4", + name: "Chat GPT", + logo: "/assets/images/brands/chatgpt.webp", + }, + { + id: "5", + name: "Dal E", + logo: "/assets/images/brands/dall-e-logo.webp", + }, + +]; + +export default function Partners() { + + return ( +
+
+
+

Trusted by Businesses & Partners Worldwide

+
+
+ +
+ {brands.map((brand) => ( +
+ {brand.name} +
+ ))} +
+
+
+ + + ) +}