diff --git a/src/lib/external-links.ts b/src/lib/external-links.ts index 91be98c..59b41ea 100644 --- a/src/lib/external-links.ts +++ b/src/lib/external-links.ts @@ -1,35 +1,35 @@ -import { Lang } from '@/i18n/locales' +import { Lang } from "@/i18n/locales"; export const EXTERNAL_URLS = { - email: 'orga@cebula.camp', -} as const + email: "orga@cebula.camp", +} as const; export function getWikiUrl(locale: Lang): string { - return `https://wiki.cebula.camp/${locale}/home` + return `https://wiki.cebula.camp/${locale}/home`; } export function getCfpScheduleUrl(locale: Lang): string { - return `https://cfp.cebula.camp/camp-2025/locale/set?locale=${locale}&next=/camp-2025/schedule/` + return `https://cfp.cebula.camp/camp-2025/locale/set?locale=${locale}&next=/camp-2025/schedule/`; } -export function getCfpUrl(locale: Lang): string { - return `https://cfp.cebula.camp/camp-2025/cfp` +export function getCfpUrl(): string { + return `https://cfp.cebula.camp/camp-2025/cfp`; } -export function getCfpArtUrl(locale: Lang): string { - return `https://cfp.cebula.camp/camp-2025-art/cfp` +export function getCfpArtUrl(): string { + return `https://cfp.cebula.camp/camp-2025-art/cfp`; } export function getEmailUrl(): string { - return `mailto:${EXTERNAL_URLS.email}` + return `mailto:${EXTERNAL_URLS.email}`; } export function getExternalLinks(locale: Lang) { return { wiki: getWikiUrl(locale), cfpSchedule: getCfpScheduleUrl(locale), - cfp: getCfpUrl(locale), - cfpArt: getCfpArtUrl(locale), + cfp: getCfpUrl(), + cfpArt: getCfpArtUrl(), email: getEmailUrl(), - } -} \ No newline at end of file + }; +}