diff --git a/client/assets/community-forums.png b/client/assets/community-forums.png new file mode 100644 index 0000000..6d0017f Binary files /dev/null and b/client/assets/community-forums.png differ diff --git a/client/assets/events.png b/client/assets/events.png new file mode 100644 index 0000000..657c4d8 Binary files /dev/null and b/client/assets/events.png differ diff --git a/client/assets/home-bill-contest.png b/client/assets/home-bill-contest.png new file mode 100644 index 0000000..e979ab5 Binary files /dev/null and b/client/assets/home-bill-contest.png differ diff --git a/client/assets/karang-guni.png b/client/assets/karang-guni.png new file mode 100644 index 0000000..9a68bd4 Binary files /dev/null and b/client/assets/karang-guni.png differ diff --git a/client/src/components/SpringboardButton.tsx b/client/src/components/SpringboardButton.tsx index 0e514d5..ef7cad4 100644 --- a/client/src/components/SpringboardButton.tsx +++ b/client/src/components/SpringboardButton.tsx @@ -4,10 +4,12 @@ import { useNavigate } from "react-router-dom"; export default function SpringboardButton({ title, subtitle, + imageSrc, linkToPage, }: { title: string; subtitle: string; + imageSrc: string; linkToPage: string; }) { const navigate = useNavigate(); @@ -16,9 +18,14 @@ export default function SpringboardButton({ onPress={() => { navigate(linkToPage); }} - className="border-4 border-primary-500 bg-neutral-700 hover:bg-primary-500 text-white" + className="relative border-4 border-primary-500 text-white p-0" > -
+ {title} +

{title}

{subtitle}

diff --git a/client/src/pages/SpringboardPage.tsx b/client/src/pages/SpringboardPage.tsx index 75ef28f..71ab05e 100644 --- a/client/src/pages/SpringboardPage.tsx +++ b/client/src/pages/SpringboardPage.tsx @@ -85,21 +85,25 @@ export default function SpringboardPage() {