diff --git a/src/components/Button.tsx b/src/components/Button.tsx index b845e7a..9b46aa7 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -1,4 +1,5 @@ import React from "react" +import { Link } from "react-router-dom" interface ButtonProps { text: string @@ -12,10 +13,10 @@ const Button: React.FC = ({ text, override, link, type }) => { type === "clear" ? "text-blue-chinese" : "bg-blue-chinese text-[#FFF]" return ( - = ({ text, override, link, type }) => { } > {text} - + ) } diff --git a/src/views/(static)/support/home/QuestionResources.tsx b/src/views/(static)/support/home/QuestionResources.tsx index 010359d..4777864 100644 --- a/src/views/(static)/support/home/QuestionResources.tsx +++ b/src/views/(static)/support/home/QuestionResources.tsx @@ -7,17 +7,30 @@ const QuestionResources: React.FC = () => {
{/* People Graphic */} -

+

Our organizing team is available throughout the whole event. If - there’s anything you need please contact us through slack or find an - organizer in person. + there's anything you need please contact us through discord or + find an organizer in person.

-
{ return ( @@ -20,13 +21,13 @@ const EventInfo: React.FC = () => {

Discord

Discord will be used for communication during the event.

- Join our Discord{" "} - - here - + in your dashboard + .

diff --git a/src/views/portal/hacker/dashboard/index.tsx b/src/views/portal/hacker/dashboard/index.tsx index c994583..841687f 100644 --- a/src/views/portal/hacker/dashboard/index.tsx +++ b/src/views/portal/hacker/dashboard/index.tsx @@ -10,12 +10,33 @@ const DashbaordHacker = () => { const fullName = user?.displayName || user?.email return ( -
+

Welcome {fullName},

Hacker Portal Dashboard

- + +
+ + +
+

+ Admitted Hackers Only Discord Server +

+

+ In addition to our general server, we have a 2024 specific server to + help addmitted hackers team up and get help from mentors. +

+ + Join 2024 Discord server + +
+
) }