diff --git a/components/features/FeaturesEight.jsx b/components/features/FeaturesEight.jsx index 77c901c..f7b9bad 100644 --- a/components/features/FeaturesEight.jsx +++ b/components/features/FeaturesEight.jsx @@ -1,43 +1,69 @@ import React from "react"; import Image from "next/image"; + + + +// AI Solutions: Innovating how we reach audiences—because the future is now. + const FeatureContent = [ { icon: "60", - meta: "Smart popups", - subTitle: `Create customized popups and show the message at the lorem`, + meta: "Paid Search", + subTitle: `Capturing attention when it matters most`, }, { icon: "61", - meta: "Embeded Forms", - subTitle: `Collect website leads with embedded forms and integrate easily.`, + meta: "Paid Display", + subTitle: ` Making your brand unmissable.`, }, { icon: "62", - meta: "Autoresponder", - subTitle: `Send welcome email to your new subscribers with a code.`, + meta: "Sponsored Content", + subTitle: `Seamlessly blending your message into the conversation.`, + }, + { + icon: "60", + meta: "Content Creation", + subTitle: `Crafting compelling narratives through AI-driven insightsm`, + }, + { + icon: "61", + meta: "Influencer Campaigns", + subTitle: `Harnessing the voices that matter.`, + }, + { + icon: "62", + meta: "Analytics", + subTitle: ` Fine-tuning every campaign to maximize impact.`, }, ]; const FeaturesEight = () => { return ( -
- {FeatureContent.map((val, i) => ( -
-
-
- icon -
-
{val.meta}
-

{val.subTitle}

-
+ <> +
+

Our Services

+
We're not just signing contracts; we're forging partnerships. Our services include:
+
+
+ {FeatureContent.map((val, i) => ( +
+
+
+ icon +
+
{val.meta}
+

{val.subTitle}

+
+
+ ))}
- ))} -
+ ); };