Skip to content
Open
Changes from all 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
16 changes: 8 additions & 8 deletions app/join/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const WebGLShader = dynamic(
},
);

const NOTION_JOIN_FORM_URL =
"https://perfect-dinghy-781.notion.site/33949ed2fc338035bd3bef46155035f5?pvs=105";
const DISCORD_INVITE_URL =
"https://discord.gg/keQBkfXy";

const benefits = [
{
Expand Down Expand Up @@ -141,12 +141,12 @@ export default function Join() {
className="group inline-flex items-center justify-center gap-2 rounded-full bg-(--brand-pink) px-10 py-4 text-lg md:text-xl font-black text-white shadow-lg shadow-[#e45a92]/20 hover:shadow-xl hover:shadow-[#e45a92]/40 transition-transform transition-colors transition-opacity hover:scale-[1.03] focus-visible:ring-2 focus-visible:ring-white/80 focus-visible:ring-offset-2 focus-visible:ring-offset-black/30 w-full sm:w-auto max-w-xs"
>
<a
href={NOTION_JOIN_FORM_URL}
href={DISCORD_INVITE_URL}
target="_blank"
rel="noopener noreferrer"
aria-label="Open Bits&Bytes join form in Notion"
aria-label="Join Bits&Bytes Discord server"
>
Apply to Join
Join Discord
<ArrowRight className="h-6 w-6 shrink-0 transition-transform group-hover:translate-x-1" />
</a>
</Button>
Expand Down Expand Up @@ -261,12 +261,12 @@ export default function Join() {
className="group rounded-full bg-[var(--brand-pink)] px-8 sm:px-10 py-5 sm:py-6 text-sm sm:text-base font-semibold text-white shadow-lg shadow-[#e45a92]/20 hover:shadow-xl hover:shadow-[#e45a92]/40 transition-transform transition-colors transition-opacity hover:scale-105 focus-visible:ring-2 focus-visible:ring-white/80 focus-visible:ring-offset-2 focus-visible:ring-offset-black/30 w-full sm:w-auto"
>
<a
href={NOTION_JOIN_FORM_URL}
href={DISCORD_INVITE_URL}
target="_blank"
rel="noopener noreferrer"
aria-label="Open Bits&Bytes join form in Notion"
aria-label="Join Bits&Bytes Discord server"
>
Apply Now
Join Discord
<ArrowRight className="ml-2 h-4 w-4 sm:h-5 sm:w-5 transition-transform group-hover:translate-x-1" />
</a>
</Button>
Expand Down