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

14 lines
270 B
JavaScript

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;