2024-02-16 19:53:36 +03:30
|
|
|
import MovingLogos from "plugins/MovingLogos/page";
|
2024-01-10 11:04:28 +03:30
|
|
|
|
|
|
|
|
const BrandsLogoSection = () => {
|
|
|
|
|
return (
|
|
|
|
|
<section>
|
|
|
|
|
<div className=" p-5 relative overflow-hidden lg:mt-20">
|
|
|
|
|
<MovingLogos />
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default BrandsLogoSection;
|