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" />
Comment on lines +144 to 150
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Update stale “application review” copy near the Discord CTA.

After switching this CTA to Discord, the nearby message about weekly application review and 7-day response is now misleading.

✏️ Proposed copy fix
-                  We review applications weekly · You&apos;ll hear back within 7
-                  days
+                  Join instantly on Discord · Introduce yourself to get started
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@app/join/page.tsx` around lines 144 - 150, The nearby informational text that
still references "weekly application review" and "7-day response" must be
updated to match the Discord CTA; locate the block near the Join Discord anchor
(href={DISCORD_INVITE_URL}, ArrowRight) in page.tsx and replace the stale copy
with a short, accurate message such as: "Join our Discord to chat with the
community and get help and updates in real time." Ensure the new sentence
replaces any mention of the application review schedule and retains existing
accessibility attributes and styling around the CTA.

</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