-
-
Notifications
You must be signed in to change notification settings - Fork 168
feat: /volunteer and /speakers forms with Google Sheets + email #1330
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
Merged
NiallJoeMaher
merged 3 commits into
codu-code:develop
from
NiallJoeMaher:feat/volunteer-speaker-forms
Apr 21, 2026
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
e5b6cac
feat: add /volunteer and /speakers forms with Google Sheets + email
NiallJoeMaher c1044bc
fix(review): escape email templates, drop invalid JSON-LD, document p…
NiallJoeMaher 183c450
style: apply Prettier formatting to volunteer/speaker files
NiallJoeMaher File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| import { SpeakerForm } from "@/components/Speaker/SpeakerForm"; | ||
|
|
||
| export function SpeakersClient() { | ||
| return ( | ||
| <div className="bg-black"> | ||
| <div className="mx-auto max-w-3xl px-4 py-16 sm:px-6 sm:py-24 lg:px-8"> | ||
| <header className="mb-10"> | ||
| <p className="mb-4 inline-block rounded-full bg-gradient-to-r from-orange-400/20 to-pink-600/20 px-3 py-1 text-xs font-semibold uppercase tracking-wide text-orange-300"> | ||
| Speak at Codú | ||
| </p> | ||
| <h1 className="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> | ||
| Pitch a talk at a Codú meetup | ||
| </h1> | ||
| <p className="mt-4 text-lg leading-relaxed text-neutral-300"> | ||
| Codú runs regular meetups across Ireland and we're always | ||
| looking for speakers. Whether it's your first talk or your | ||
| fiftieth, we'd love to hear your pitch. Propose a talk (or up | ||
| to three) and we'll be in touch. | ||
| </p> | ||
| </header> | ||
|
|
||
| <SpeakerForm /> | ||
|
|
||
| <p className="mt-6 text-center text-sm text-neutral-400"> | ||
| Takes about 3 minutes. First-time speakers welcome — we'll help | ||
| you prep. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| import type { Metadata } from "next"; | ||
| import { SpeakersClient } from "./_client"; | ||
|
|
||
| const PAGE_URL = "https://www.codu.co/speakers"; | ||
| const PAGE_TITLE = "Speak at Codú — Pitch a Talk for Our Meetups"; | ||
| const PAGE_DESCRIPTION = | ||
| "Pitch a talk at a Codú meetup. First-time speakers welcome. We run regular developer meetups across Ireland and are always looking for people to share what they've built, learned, or broken."; | ||
|
|
||
| export const metadata: Metadata = { | ||
| title: PAGE_TITLE, | ||
| description: PAGE_DESCRIPTION, | ||
| keywords: [ | ||
| "Codú speaker", | ||
| "tech meetup speaker Ireland", | ||
| "developer meetup Dublin", | ||
| "first time speaker", | ||
| "web development talk", | ||
| "speak at meetup Ireland", | ||
| ], | ||
| alternates: { canonical: PAGE_URL }, | ||
| robots: { index: true, follow: true }, | ||
| openGraph: { | ||
| title: "Speak at Codú", | ||
| description: PAGE_DESCRIPTION, | ||
| url: PAGE_URL, | ||
| type: "website", | ||
| }, | ||
| twitter: { | ||
| card: "summary_large_image", | ||
| title: "Speak at Codú", | ||
| description: PAGE_DESCRIPTION, | ||
| }, | ||
| }; | ||
|
|
||
| export default function SpeakersPage() { | ||
| return <SpeakersClient />; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| import { VolunteerForm } from "@/components/Volunteer/VolunteerForm"; | ||
|
|
||
| export function VolunteerClient() { | ||
| return ( | ||
| <div className="bg-black"> | ||
| <div className="mx-auto max-w-3xl px-4 py-16 sm:px-6 sm:py-24 lg:px-8"> | ||
| <header className="mb-10"> | ||
| <p className="mb-4 inline-block rounded-full bg-gradient-to-r from-orange-400/20 to-pink-600/20 px-3 py-1 text-xs font-semibold uppercase tracking-wide text-orange-300"> | ||
| Volunteer with Codú | ||
| </p> | ||
| <h1 className="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> | ||
| Help us build Ireland's largest web dev community | ||
| </h1> | ||
| <p className="mt-4 text-lg leading-relaxed text-neutral-300"> | ||
| Codú is Ireland's largest web dev community — thousands of | ||
| developers, regular meetups, and a newsletter across the Irish tech | ||
| ecosystem. We're opening volunteer spots for people interested | ||
| in marketing and events. | ||
| </p> | ||
| </header> | ||
|
|
||
| <VolunteerForm /> | ||
|
|
||
| <p className="mt-6 text-center text-sm text-neutral-400"> | ||
| Takes about 3 minutes. We read every application and reply within 2 | ||
| weeks. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| import type { Metadata } from "next"; | ||
| import { VolunteerClient } from "./_client"; | ||
|
|
||
| const PAGE_URL = "https://www.codu.co/volunteer"; | ||
| const PAGE_TITLE = | ||
| "Volunteer with Codú — Help Build Ireland's Largest Dev Community"; | ||
| const PAGE_DESCRIPTION = | ||
| "Join the team behind Codú. We're recruiting volunteer marketers and event organisers to help run meetups, newsletters, partnerships, and socials across the Irish tech ecosystem."; | ||
|
|
||
| export const metadata: Metadata = { | ||
| title: PAGE_TITLE, | ||
| description: PAGE_DESCRIPTION, | ||
| keywords: [ | ||
| "Codú volunteer", | ||
| "volunteer developer community", | ||
| "Ireland tech community", | ||
| "web developer volunteer", | ||
| "tech meetup organiser Ireland", | ||
| "marketing volunteer", | ||
| "events volunteer", | ||
| ], | ||
| alternates: { canonical: PAGE_URL }, | ||
| robots: { index: true, follow: true }, | ||
| openGraph: { | ||
| title: "Volunteer with Codú", | ||
| description: PAGE_DESCRIPTION, | ||
| url: PAGE_URL, | ||
| type: "website", | ||
| }, | ||
| twitter: { | ||
| card: "summary_large_image", | ||
| title: "Volunteer with Codú", | ||
| description: PAGE_DESCRIPTION, | ||
| }, | ||
| }; | ||
|
|
||
| export default function VolunteerPage() { | ||
| return <VolunteerClient />; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.