ok
This commit is contained in:
@@ -65,10 +65,7 @@ const AcademySection = ({setSelectedProduct, setShowedModal, courseSectionRef, s
|
||||
<div
|
||||
key={product.id}
|
||||
className={`${styles.courseCard} ${hoveredCard === product.id ? styles.courseCardHover : ''}`}
|
||||
onClick={() => {
|
||||
setSelectedProduct(product);
|
||||
setShowedModal('product');
|
||||
}}
|
||||
|
||||
onMouseEnter={() => setHoveredCard(product.id)}
|
||||
onMouseLeave={() => setHoveredCard(null)}
|
||||
>
|
||||
|
||||
@@ -5,10 +5,11 @@ import useInView from '../hooks/useInView';
|
||||
|
||||
const ClientsSection = () => {
|
||||
const logos = [
|
||||
'dermalounge.jpg',
|
||||
'logo_pemprov_jatim.png',
|
||||
'suar.avif',
|
||||
'kloowear.png',
|
||||
'kloowear.webp',
|
||||
'psi.png',
|
||||
'cafe-hore.png'
|
||||
];
|
||||
|
||||
const { ref, inView } = useInView();
|
||||
@@ -25,7 +26,7 @@ const ClientsSection = () => {
|
||||
{logos.map((logo, index) => (
|
||||
<div className={`${styles.clientLogoWrapper} m-2`} key={index}>
|
||||
<Image
|
||||
src={`https://kediritechnopark.com/assets/${logo}`}
|
||||
src={`/assets/${logo}`}
|
||||
fluid
|
||||
className={styles.clientLogo}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user