Merge remote-tracking branch 'origin/dev/guerby' into dev/cedric
This commit is contained in:
@@ -8,8 +8,8 @@ const Features: React.FC<
|
||||
}>
|
||||
> = ({ title, description, cta, children }) => {
|
||||
return (
|
||||
<section className="py-32 px-4 container self-center">
|
||||
<div className="flex flex-col gap-16 lg:px-16">
|
||||
<section className="lg:md:py-24 sm:py-12 container self-center">
|
||||
<div className="flex flex-col gap-16">
|
||||
<div className="lg:max-w-sm">
|
||||
<h2 className="mb-3 text-xl font-semibold md:mb-4 md:text-4xl lg:mb-6">
|
||||
{title}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -36,7 +36,7 @@ const testimonials = [
|
||||
},
|
||||
];
|
||||
|
||||
const Testimonial14 = () => {
|
||||
const Testimonial = () => {
|
||||
const [api, setApi] = useState<CarouselApi>();
|
||||
const [current, setCurrent] = useState(0);
|
||||
|
||||
@@ -109,4 +109,4 @@ const Testimonial14 = () => {
|
||||
);
|
||||
};
|
||||
|
||||
export default Testimonial14;
|
||||
export default Testimonial;
|
||||
|
||||
Reference in New Issue
Block a user