Files
FinMarket/components/features/FeatureNine.jsx
T
CHIEFSOFT\ameye 12dc51b610 next sections
2025-02-14 10:00:46 -05:00

69 lines
2.0 KiB
React
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from "react";
import Image from "next/image";
// SEO: Mastering both AI and traditional search engines.
// PR: Connecting with reporters who can amplify your voice.
// Design & Events: Creating memorable experiences that resonate.
// Special Projects: Whether its an app or a website, we bring your vision to life.
// Branding & Voice Guidelines: Well help you find your voice and present a unique and consistent point of view (POV)
const FeatureContent = [
{
icon: "ils_15",
meta: "SEO",
subTitle: ` Mastering both AI and traditional search engines.`,
},
{
icon: "ils_16",
meta: "PR",
subTitle: `Connecting with reporters who can amplify your voice,`,
},
{
icon: "ils_17",
meta: "Design & Events",
subTitle: `Creating memorable experiences that resonate`,
},
{
icon: "ils_15",
meta: "Special Projects",
subTitle: ` Whether its an app or a website, we bring your vision to life.`,
},
{
icon: "ils_16",
meta: "Branding & Voice Guidelines",
subTitle: `Branding & Voice Guidelines: Well help you find your voice and present a unique and consistent point of view (POV),`,
},
{
icon: "ils_17",
meta: "Learn More",
subTitle: `Special to another page will be good here`,
},
];
const FeatureNine = () => {
return (
<div className="row justify-content-center">
{FeatureContent.map((val, i) => (
<div
className="col-lg-4 col-md-6"
key={i}
data-aos="fade-up"
data-aos-duration="1200"
>
<div className="block-style-fourteen">
<div className="illustration">
<Image width={240} height={230} style={{objectFit:'contain'}} src={`/images/assets/${val.icon}.svg`} alt="icon" />
</div>
<div className="title">{val.meta}</div>
<p className="font-rubik">{val.subTitle}</p>
</div>
{/* /.block-style-fourteen */}
</div>
))}
</div>
// /.row
);
};
export default FeatureNine;