initial commit

This commit is contained in:
2026-05-22 07:24:00 +01:00
parent 0947645601
commit ca60b38c85
16 changed files with 420 additions and 58 deletions

1
components/ui/button.tsx Normal file
View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,17 @@
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>
</>
)
}