This commit is contained in:
2025-08-25 16:36:58 +02:00
parent 0bd87b2e4b
commit 67896caf27
16 changed files with 20 additions and 19 deletions

View File

@@ -71,7 +71,7 @@ const MultiCardCarousel = () => {
const displayCards = isMobile ? [cards[currentIndex]] : cards.slice(currentIndex, currentIndex + 3);
return (
<div className="bg-bg-sand flex items-center justify-center py-16 lg:py-24 px-6">
<div className="bg-transparent flex items-center justify-center py-16 lg:py-24 px-6">
<div className="w-full max-w-7xl ">
<div className="text-left mx-auto max-w-7xl ">
<H2 className="">
@@ -85,7 +85,7 @@ const MultiCardCarousel = () => {
{cards.slice(0, 3).map((card, index) => (
<div
key={index}
className="relative overflow-hidden bg-bg-sand"
className="relative overflow-hidden bg-transparent"
>
<div className="aspect-[4/5] overflow-hidden">
<img