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

Buttons applications closed #99

Merged
merged 5 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
18 changes: 3 additions & 15 deletions src/app/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ import {
SpacingXXL,
TitleXXL,
} from "@/app/genericComponents/tokens";
import {
PrimaryButton,
SecondaryButton,
} from "@/app/genericComponents/Buttons";
import { SecondaryButton } from "@/app/genericComponents/Buttons";
import { silom } from "@/app/genericComponents/fonts";

const HeroContainer = styled.div`
Expand Down Expand Up @@ -166,22 +163,13 @@ export default function Hero() {
</TextsContainer>
<ButtonsContainer>
<SecondaryButton
href="https://my.hackupc.com/user/signup/"
href="https://live.hackupc.com/"
target="_blank"
rel="noopener noreferrer"
width="100%"
>
Apply as Hacker
Check our live page
</SecondaryButton>
<PrimaryButton
href="https://my.hackupc.com/user/signup/volunteer/"
target="_blank"
rel="noopener noreferrer"
width="100%"
style={{ marginTop: 0 }}
>
Apply as Volunteer
</PrimaryButton>
</ButtonsContainer>
</HeroContainer>
</div>
Expand Down
8 changes: 1 addition & 7 deletions src/app/components/HowToParticipate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,7 @@ export default function HowToParticipate() {
to know how this amazing event works from the inside, meet amazing
people and live a great experience!
</Text>
<PrimaryOutlineButton
href="https://my.hackupc.com/user/signup/volunteer/"
target="_blank"
rel="noopener noreferrer"
>
Apply as a volunteer
</PrimaryOutlineButton>
<SecondaryOutlineButton disabled>Closed</SecondaryOutlineButton>
AdriMM26 marked this conversation as resolved.
Show resolved Hide resolved
</TextContainer>
</RoleBlock>

Expand Down
26 changes: 5 additions & 21 deletions src/app/components/Trailer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ import {
SpacingM,
SpacingS,
} from "@/app/genericComponents/tokens";
import {
PrimaryButton,
SecondaryButton,
} from "@/app/genericComponents/Buttons";
import { SecondaryOutlineButton } from "@/app/genericComponents/Buttons";
import { silom } from "@/app/genericComponents/fonts";
import React from "react";

const VideoWrapper = styled.div`
position: relative;
Expand Down Expand Up @@ -96,23 +94,9 @@ export default function Trailer() {
/>
</VideoWrapper>
<ButtonContainer className={silom.className}>
<SecondaryButton
width={"60%"}
href="https://my.hackupc.com/user/signup/"
target="_blank"
rel="noopener noreferrer"
>
Apply as a hacker
</SecondaryButton>
<PrimaryButton
href="https://my.hackupc.com/user/signup/volunteer/"
target="_blank"
rel="noopener noreferrer"
width={"60%"}
style={{ marginTop: 0 }}
>
Apply as a volunteer
</PrimaryButton>
<SecondaryOutlineButton disabled>
Applications are closed
</SecondaryOutlineButton>
</ButtonContainer>
</Section>
</SectionBackground>
Expand Down
Loading