This commit is contained in:
jaya
2025-09-24 16:06:06 +07:00
parent 1a84386cdc
commit fc934c88d8
7 changed files with 5 additions and 7 deletions

BIN
public/assets/cafe-hore.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

BIN
public/assets/kloowear.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

BIN
public/assets/psi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
public/assets/suar.avif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@@ -65,10 +65,7 @@ const AcademySection = ({setSelectedProduct, setShowedModal, courseSectionRef, s
<div <div
key={product.id} key={product.id}
className={`${styles.courseCard} ${hoveredCard === product.id ? styles.courseCardHover : ''}`} className={`${styles.courseCard} ${hoveredCard === product.id ? styles.courseCardHover : ''}`}
onClick={() => {
setSelectedProduct(product);
setShowedModal('product');
}}
onMouseEnter={() => setHoveredCard(product.id)} onMouseEnter={() => setHoveredCard(product.id)}
onMouseLeave={() => setHoveredCard(null)} onMouseLeave={() => setHoveredCard(null)}
> >

View File

@@ -5,10 +5,11 @@ import useInView from '../hooks/useInView';
const ClientsSection = () => { const ClientsSection = () => {
const logos = [ const logos = [
'dermalounge.jpg', 'logo_pemprov_jatim.png',
'suar.avif', 'suar.avif',
'kloowear.png', 'kloowear.webp',
'psi.png', 'psi.png',
'cafe-hore.png'
]; ];
const { ref, inView } = useInView(); const { ref, inView } = useInView();
@@ -25,7 +26,7 @@ const ClientsSection = () => {
{logos.map((logo, index) => ( {logos.map((logo, index) => (
<div className={`${styles.clientLogoWrapper} m-2`} key={index}> <div className={`${styles.clientLogoWrapper} m-2`} key={index}>
<Image <Image
src={`https://kediritechnopark.com/assets/${logo}`} src={`/assets/${logo}`}
fluid fluid
className={styles.clientLogo} className={styles.clientLogo}
/> />