Files
dev-chiefworks 2ce13271d8 first commit
2024-01-10 11:05:21 -05:00

56 lines
1.7 KiB
React
Raw Permalink 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";
const BlockMetaData = () => {
const blockMetaCotent = [
{
_id: 1,
icon: "01",
title: "Create Project",
metaHoverContent: ` Dont waste time on tedious manual tasks. Let Automation do it for
you. Simplify workflows, reduce errors, and save time for solving
more.`,
},
{
_id: 2,
icon: "02",
title: "Making Plan",
metaHoverContent: ` Now it's more easy to make plan. Let Automation do it for you.
Simplify workflows, reduce errors, and save time for solving more.`,
},
{
_id: 3,
icon: "03",
title: "Create Wearframe",
metaHoverContent: ` You are one step ahead to create wireframe. Let Automation do it for
you. Simplify workflows.`,
},
{
_id: 4,
icon: "04",
title: "Final Output",
metaHoverContent: ` Checkout the final output. Let Automation do it for you. Simplify
workflows, reduce errors, and save time for solving more.`,
},
];
return (
<>
{blockMetaCotent.map((blockMeta) => (
<div className="block-meta-data text-center" key={blockMeta._id}>
<div className="line-dot-container">
<div className="icon-box">
<Image width={blockMeta._id == 1 ? 85 : 35} height={blockMeta._id == 1 ? 85 : 35} style={{objectFit:'contain'}} src={`/images/icon/${blockMeta.icon}.svg`} alt="icon" />
</div>
{/* /.icon-box */}
<p>{blockMeta.title}</p>
</div>
<div className="hover-content">
<span>{blockMeta.metaHoverContent}</span>
</div>
</div>
))}
</>
);
};
export default BlockMetaData;