web/components/LandingPage/BrandsLogoSection/page.jsx

14 lines
270 B
React
Raw Permalink Normal View History

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;