Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Subscribe button volunteers #106

Merged
merged 5 commits into from
Nov 20, 2024
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions src/app/components/HowToParticipate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
import { Section } from "@/app/genericComponents/General";
import {
PrimaryOutlineButton,
SecondaryButton,
SecondaryOutlineButton,
} from "@/app/genericComponents/Buttons";

Expand Down Expand Up @@ -87,7 +88,7 @@ export default function HowToParticipate() {
<SectionTitle>How to participate</SectionTitle>
<RoleBlock>
<ImageButton
href="https://my.hackupc.com/user/signup/mentor/"
//href="https://my.hackupc.com/user/signup/mentor/"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -107,13 +108,13 @@ export default function HowToParticipate() {
are passionate about it, or if you've graduated more than a year ago
and can't participate as a hacker, apply now as a mentor!
</Text>
<SecondaryOutlineButton disabled>Closed</SecondaryOutlineButton>
<PrimaryOutlineButton disabled>Closed</PrimaryOutlineButton>
AdriMM26 marked this conversation as resolved.
Show resolved Hide resolved
</TextContainer>
</RoleBlock>

<RoleBlock imageLeft>
<ImageButton
href="https://my.hackupc.com/user/signup/volunteer/"
href="https://hackersatupc.typeform.com/to/pPdpTexb"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -134,7 +135,9 @@ export default function HowToParticipate() {
to know how this amazing event works from the inside, meet amazing
people and live a great experience!
</Text>
<PrimaryOutlineButton disabled>Closed</PrimaryOutlineButton>
<SecondaryButton href="https://hackersatupc.typeform.com/to/pPdpTexb">
AdriMM26 marked this conversation as resolved.
Show resolved Hide resolved
Subscribe
</SecondaryButton>
</TextContainer>
</RoleBlock>

Expand All @@ -160,13 +163,13 @@ export default function HowToParticipate() {
talents. Join us and be remembered as part of this hackathon by our
participants!
</Text>
<SecondaryOutlineButton
<PrimaryOutlineButton
AdriMM26 marked this conversation as resolved.
Show resolved Hide resolved
href="mailto:[email protected]"
target="_blank"
rel="noopener noreferrer"
>
Contact us
</SecondaryOutlineButton>
</PrimaryOutlineButton>
</TextContainer>
</RoleBlock>

Expand All @@ -192,13 +195,13 @@ export default function HowToParticipate() {
the tech scene of tomorrow by adding real value and making it
possible for hackers to build something they're proud of.
</Text>
<PrimaryOutlineButton
<SecondaryOutlineButton
AdriMM26 marked this conversation as resolved.
Show resolved Hide resolved
href="mailto:[email protected]"
target="_blank"
rel="noopener noreferrer"
>
Contact us
</PrimaryOutlineButton>
</SecondaryOutlineButton>
</TextContainer>
</RoleBlock>
</Section>
Expand Down
Loading