diff --git a/src/components/home/materials.tsx b/src/components/home/materials.tsx index 45a9f5e..96e1bbb 100644 --- a/src/components/home/materials.tsx +++ b/src/components/home/materials.tsx @@ -1,6 +1,7 @@ import { FiArrowUpRight, FiBook, FiBookOpen, FiClipboard, FiFileText, FiUploadCloud } from "react-icons/fi" import { CardIcon } from "@/components/card-icon" import { Button } from "@/components/ui/button" +import { CardCaption } from "../card-caption" const featuredCards = [ { @@ -30,13 +31,20 @@ const quickLinks = [ export function Materials() { return (
-
-
- {/* TODO sotto sm usare le altre card fatte da Diubi */} +
+ {/* Desktop Cards */} +
{featuredCards.map((card) => ( ))}
+ {/* Mobile Cards */} +
+ {featuredCards.map((card) => ( + + ))} +
{quickLinks.map((card) => (