From 9029a64753026700a1818a608ca22e3148dde70b Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 21 Feb 2025 21:37:47 -0500 Subject: [PATCH] missing pRAT --- .../features/ContentsPartnersSection.jsx | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 components/features/ContentsPartnersSection.jsx diff --git a/components/features/ContentsPartnersSection.jsx b/components/features/ContentsPartnersSection.jsx new file mode 100644 index 0000000..6946273 --- /dev/null +++ b/components/features/ContentsPartnersSection.jsx @@ -0,0 +1,58 @@ +'use client' +import Image from "next/image"; +import React from "react"; + +const FeatureContent = [ + { + icon: "20", + meta: "SEO", + subTitle: `Mastering search engines to boost your visibility.`, + dataDelay: "0", + }, + { + icon: "21", + meta: "Public Relations", + subTitle: `Connecting you with the media that can elevate your voice.`, + dataDelay: "100", + }, + { + icon: "22", + meta: "Design & Events", + subTitle: `Crafting memorable experiences that leave a mark.`, + dataDelay: "300", + }, + { + icon: "23", + meta: "Special Projects", + subTitle: `Whether it’s an app or a website, we bring your vision to life with flair.`, + dataDelay: "300", + }, +]; + +const ContentsPartnersSection = () => { + return ( +
+ {FeatureContent.map((val, i) => ( +
+
+
+ icon +
+
+ {val.meta} +
+

{val.subTitle}

+
+
+ ))} +
+ ); +}; + +export default ContentsPartnersSection;