Merge remote-tracking branch 'origin/dev/guerby' into dev/cedric

This commit is contained in:
cdricms
2025-01-13 14:56:31 +01:00
5 changed files with 27 additions and 12 deletions

View File

@@ -54,7 +54,7 @@ const data = [
},
];
const Gallery6 = () => {
const Gallery = () => {
const [carouselApi, setCarouselApi] = useState<CarouselApi>();
const [canScrollPrev, setCanScrollPrev] = useState(false);
const [canScrollNext, setCanScrollNext] = useState(false);
@@ -73,7 +73,7 @@ const Gallery6 = () => {
};
}, [carouselApi]);
return (
<section className="py-32 py-32 flex flex-col items-center overflow-visible">
<section className="lg:md:py-24 sm:py-12 flex flex-col items-center overflow-visible">
<div className="container">
<div className="mb-8 flex flex-col justify-between md:mb-14 md:flex-row md:items-end lg:mb-16">
<div>
@@ -171,4 +171,4 @@ const Gallery6 = () => {
);
};
export default Gallery6;
export default Gallery;