import Header from "@/components/MyPages/Blocks/Header" import Card from "@/components/TempDesignSystem/Card" import Grids from "@/components/TempDesignSystem/Grids" import styles from "./cardsGrid.module.css" import { CardsGridProps } from "@/types/components/loyalty/blocks" export default function CardsGrid({ cards_grid }: CardsGridProps) { return (
{cards_grid.cards.map((card) => ( ))}
) }