|
| 1 | +import type { Metadata } from "next"; |
| 2 | +import { JsonLd } from "@/components/JsonLd"; |
| 3 | +import { VolunteerClient } from "./_client"; |
| 4 | + |
| 5 | +const PAGE_URL = "https://www.codu.co/volunteer"; |
| 6 | +const PAGE_TITLE = "Volunteer with Codú — Help Build Ireland's Largest Dev Community"; |
| 7 | +const PAGE_DESCRIPTION = |
| 8 | + "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."; |
| 9 | + |
| 10 | +export const metadata: Metadata = { |
| 11 | + title: PAGE_TITLE, |
| 12 | + description: PAGE_DESCRIPTION, |
| 13 | + keywords: [ |
| 14 | + "Codú volunteer", |
| 15 | + "volunteer developer community", |
| 16 | + "Ireland tech community", |
| 17 | + "web developer volunteer", |
| 18 | + "tech meetup organiser Ireland", |
| 19 | + "marketing volunteer", |
| 20 | + "events volunteer", |
| 21 | + ], |
| 22 | + alternates: { canonical: PAGE_URL }, |
| 23 | + robots: { index: true, follow: true }, |
| 24 | + openGraph: { |
| 25 | + title: "Volunteer with Codú", |
| 26 | + description: PAGE_DESCRIPTION, |
| 27 | + url: PAGE_URL, |
| 28 | + type: "website", |
| 29 | + }, |
| 30 | + twitter: { |
| 31 | + card: "summary_large_image", |
| 32 | + title: "Volunteer with Codú", |
| 33 | + description: PAGE_DESCRIPTION, |
| 34 | + }, |
| 35 | +}; |
| 36 | + |
| 37 | +const volunteerJsonLd = { |
| 38 | + "@context": "https://schema.org", |
| 39 | + "@type": "JobPosting", |
| 40 | + title: "Volunteer — Marketing & Events", |
| 41 | + description: PAGE_DESCRIPTION, |
| 42 | + employmentType: "VOLUNTEER", |
| 43 | + hiringOrganization: { |
| 44 | + "@type": "Organization", |
| 45 | + name: "Codú", |
| 46 | + sameAs: "https://www.codu.co", |
| 47 | + logo: "https://www.codu.co/images/codu-logo.png", |
| 48 | + }, |
| 49 | + jobLocation: { |
| 50 | + "@type": "Place", |
| 51 | + address: { |
| 52 | + "@type": "PostalAddress", |
| 53 | + addressCountry: "IE", |
| 54 | + }, |
| 55 | + }, |
| 56 | + applicantLocationRequirements: { "@type": "Country", name: "Worldwide" }, |
| 57 | + jobLocationType: "TELECOMMUTE", |
| 58 | + datePosted: new Date().toISOString().split("T")[0], |
| 59 | + url: PAGE_URL, |
| 60 | +}; |
| 61 | + |
| 62 | +export default function VolunteerPage() { |
| 63 | + return ( |
| 64 | + <> |
| 65 | + <JsonLd data={volunteerJsonLd} /> |
| 66 | + <VolunteerClient /> |
| 67 | + </> |
| 68 | + ); |
| 69 | +} |
0 commit comments