first commit

This commit is contained in:
dev-chiefworks
2024-01-10 11:05:21 -05:00
commit 2ce13271d8
1398 changed files with 91003 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import React from "react";
import Image from "next/image";
const BrandImages = [
"logo-32",
"logo-33",
"logo-34",
"logo-35",
"logo-36",
"logo-37",
"logo-38",
];
const BrandThree = () => {
return (
<>
{BrandImages.map((val, i) => (
<div
className="logo d-flex align-items-center justify-content-center"
key={i}
>
<Image width={130} height={82} style={{maxHeight:'50%',objectFit:'contain'}} src={`/images/logo/${val}.png`} alt="logo" />
</div>
))}
</>
);
};
export default BrandThree;