From 0601f2af559404f7f71837abd4676cb2df0009f5 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 21 Feb 2025 13:46:22 -0500 Subject: [PATCH] performance page --- app/(services)/performance/page.jsx | 137 +++++++++--------- .../features/PerformanceServiceSection.jsx | 49 +++++++ 2 files changed, 121 insertions(+), 65 deletions(-) create mode 100644 components/features/PerformanceServiceSection.jsx diff --git a/app/(services)/performance/page.jsx b/app/(services)/performance/page.jsx index ff5864a..354ba8f 100644 --- a/app/(services)/performance/page.jsx +++ b/app/(services)/performance/page.jsx @@ -10,7 +10,7 @@ import FancyFeatureThirtyThree from "../../../components/features/FancyFeatureTh import Image from "next/image"; import FooterFinSite from "@/components/footer/FooterFinSite"; import Header from "../../../components/header/Header"; -import FeatureThree from "@/components/features/FeatureThree"; +import PerformanceServiceSection from "@/components/features/PerformanceServiceSection"; import FeatureFive from "@/components/features/FeatureFive"; export const metadata = { @@ -53,6 +53,76 @@ const ServiceV1 = () => { {/* /.fancy-hero-three */} + + + {/* ===================================================== + Fancy Text block Twelve + ===================================================== */} +
+
+
+
+
+
+ {/*
Why us?
*/} + {/*

*/} + {/* */} + {/* Why your should*/} + {/* image*/} + {/* */} + {/* choose deski.*/} + {/*

*/} +
+

+ Now, what does performance marketing entail? It’s about deploying strategies that hit the mark, such as: +

+
    +
  • Crafting targeted advertising campaigns
  • +
  • Launching paid media ads that speak to the heart
  • +
  • Employing retargeting strategies to keep your brand top-of-mind
  • +
  • Optimizing your website for search engines—because visibility is key
  • +
  • Hosting engaging webinars that inform and attract
  • +
  • Utilizing email outreach to nurture leads
  • +
  • Networking on LinkedIn to build relationships
  • +
  • Supporting your sales team with the tools they need to succeed
  • +
+
+ {/* */} +
+ {/* End .col-6 */} + +
+
+ image + shape + shape +
+ {/* */} +
+ {/* End col-lg-5 */} +
+
+
+ {/* */} + + + {/* ============================================= Fancy Text block Eleven ============================================== */} @@ -90,7 +160,7 @@ const ServiceV1 = () => {
- +
@@ -164,69 +234,6 @@ const ServiceV1 = () => { - {/* ===================================================== - Fancy Text block Twelve - ===================================================== */} -
-
-
-
-
-
-
Why us?
-

- - Why your should - image - - choose deski. -

-
-

- A ticketing system is a tool, primarily for customer service. - It helps customer representativ inquiries from one interface - without any struggles. -

-
    -
  • Amazing communication.
  • -
  • Best trendinf designing experience.
  • -
  • Email & Live chat.
  • -
-
- {/* */} -
- {/* End .col-6 */} - -
-
- image - shape - shape -
- {/* */} -
- {/* End col-lg-5 */} -
-
-
- {/* */} - {/* ===================================================== diff --git a/components/features/PerformanceServiceSection.jsx b/components/features/PerformanceServiceSection.jsx new file mode 100644 index 0000000..5e3cb49 --- /dev/null +++ b/components/features/PerformanceServiceSection.jsx @@ -0,0 +1,49 @@ +//PerformanceServiceSection +import React from "react"; +import Image from "next/image"; +const FeatureContent = [ + { + icon: "09", + meta: "Project management", + subTitle: `tempor incididunt ut labor culpa dolore magna aliqua. Ut enim qui minim veniam,`, + dataDelay: "0", + }, + { + icon: "10", + meta: "Customer Support", + subTitle: `Excepteur sint occaecat cupidatat non proident, sunt in culpa non officia.`, + dataDelay: "100", + }, + { + icon: "11", + meta: "Marketing", + subTitle: `consectetur adipiscing elit, sed dou eiusmod tempor incididu ut lab et dolore.`, + dataDelay: "300", + }, +]; + +const PerformanceServiceSection = () => { + return ( +
+ {FeatureContent.map((val, i) => ( +
+
+
+ icon +
+

{val.meta}

+

{val.subTitle}

+
+
+ ))} +
+ ); +}; + +export default PerformanceServiceSection;