bonsai-web/components/LandingPage/BrandsLogoSection/page.jsx

14 lines
270 B
React
Raw Permalink Normal View History

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