Compare commits

...

2 commits

Author SHA1 Message Date
Dariusz Niemczyk 1278f07adf
feat: added mailto 2025-02-09 19:00:35 +01:00
Dariusz Niemczyk 321a8a45cc
fix: invalid orga email 2025-02-09 18:54:56 +01:00
2 changed files with 6 additions and 4 deletions

View file

@ -174,7 +174,7 @@ export default function LandingPage(
<Section id="tickets" title={t.tickets.title} paragraphs={<p>{t.tickets.status}</p>} /> <Section id="tickets" title={t.tickets.title} paragraphs={<p>{t.tickets.status}</p>} />
<Section id="accommodation" title={t.accommodation.title} paragraphs={<p>{t.accommodation.description}</p>} /> <Section id="accommodation" title={t.accommodation.title} paragraphs={<p>{t.accommodation.description}</p>} />
<Section id="food" title={t.food.title} paragraphs={<p>{t.food.description}</p>} /> <Section id="food" title={t.food.title} paragraphs={<p>{t.food.description}</p>} />
<Section id="contact" title={t.contact.title} paragraphs={<p>{t.contact.email}</p>} /> <Section id="contact" title={t.contact.title} paragraphs={<a href={`mailto:${t.contact.email}`}>{t.contact.email}</a>} />
<Section id="credits" title={t.credits.title} paragraphs={<> <Section id="credits" title={t.credits.title} paragraphs={<>
<p>{t.credits.usedFonts}</p> <p>{t.credits.usedFonts}</p>
<p><a className="hover:underline" href="https://velvetyne.fr/fonts/jgs-font/">{t.credits.jgs7}</a></p> <p><a className="hover:underline" href="https://velvetyne.fr/fonts/jgs-font/">{t.credits.jgs7}</a></p>

View file

@ -1,6 +1,7 @@
const common = { const common = {
jgs7: "JGS font Jgs font by Adel Faure. Distributed by velvetyne.fr", jgs7: "JGS font Jgs font by Adel Faure. Distributed by velvetyne.fr",
oxanium: "Oxanium", oxanium: "Oxanium",
orgaEmail: "orga@cebula.camp",
}; };
const pl = { const pl = {
@ -31,7 +32,8 @@ const pl = {
}, },
where: { where: {
title: "Gdzie", title: "Gdzie",
location: "Klub „Łącznik”, Tramwajowa 1-3, Wrocław, obok Hackerspace Wrocław", location:
"Klub „Łącznik”, Tramwajowa 1-3, Wrocław, obok Hackerspace Wrocław",
}, },
when: { when: {
title: "Kiedy", title: "Kiedy",
@ -55,7 +57,7 @@ const pl = {
}, },
contact: { contact: {
title: "Kontakt", title: "Kontakt",
email: "contact@cebula.camp", email: common.orgaEmail,
}, },
credits: { credits: {
title: "Uznania", title: "Uznania",
@ -118,7 +120,7 @@ const en = {
}, },
contact: { contact: {
title: "Contact", title: "Contact",
email: "contact@cebula.camp", email: common.orgaEmail,
}, },
credits: { credits: {
title: "Credits", title: "Credits",