ok
This commit is contained in:
BIN
public/assets/cafe-hore.png
Normal file
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
BIN
public/assets/kloowear.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/logo_pemprov_jatim.png
Normal file
BIN
public/assets/logo_pemprov_jatim.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 161 KiB |
BIN
public/assets/psi.png
Normal file
BIN
public/assets/psi.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 44 KiB |
BIN
public/assets/suar.avif
Normal file
BIN
public/assets/suar.avif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 50 KiB |
@@ -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)}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -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}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user