first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-12 23:25:43 -05:00
commit d8c7ec4866
1400 changed files with 90826 additions and 0 deletions
@@ -0,0 +1,55 @@
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;