Files
SculptedArcWebSite/components/ui/content-cards.tsx
2026-05-22 07:24:00 +01:00

17 lines
410 B
TypeScript

interface cardProps {
src?: string
button_link?: string
button_text?: string
}
export default function ContentCard(buttonProps: cardProps) {
return (
<>
<img src={buttonProps.src}></img>
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full">
{buttonProps.button_text}
</button>
</>
)
}