From bd779a15a4b13965bfad29df486e2ad351662e2c Mon Sep 17 00:00:00 2001 From: "Chuma Mcphoy (We Ahead)" Date: Fri, 7 Feb 2025 15:06:22 +0000 Subject: [PATCH] Merged in fix/add-mobile-variant-section-link-in-carousel-cards (pull request #1281) feat: add mobile section link to CarouselCards * feat: add mobile section link to CarouselCards Approved-by: Christian Andolf --- components/Blocks/CarouselCards/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/Blocks/CarouselCards/index.tsx b/components/Blocks/CarouselCards/index.tsx index 36323107e..034381673 100644 --- a/components/Blocks/CarouselCards/index.tsx +++ b/components/Blocks/CarouselCards/index.tsx @@ -5,6 +5,7 @@ import { useState } from "react" import ContentCard from "@/components/ContentCard" import SectionContainer from "@/components/Section/Container" import SectionHeader from "@/components/Section/Header" +import SectionLink from "@/components/Section/Link" import Filters from "./Filters" @@ -55,6 +56,7 @@ export default function CarouselCards({ carousel_cards }: CarouselCardsProps) { /> ))} + ) }