feat: added mailto

This commit is contained in:
Dariusz Niemczyk 2025-02-09 19:00:35 +01:00
parent 321a8a45cc
commit 1278f07adf
No known key found for this signature in database
2 changed files with 4 additions and 3 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="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="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={<>
<p>{t.credits.usedFonts}</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 = {
jgs7: "JGS font Jgs font by Adel Faure. Distributed by velvetyne.fr",
oxanium: "Oxanium",
orgaEmail: "orga@cebula.camp",
};
const pl = {
@ -56,7 +57,7 @@ const pl = {
},
contact: {
title: "Kontakt",
email: "orga@cebula.camp",
email: common.orgaEmail,
},
credits: {
title: "Uznania",
@ -119,7 +120,7 @@ const en = {
},
contact: {
title: "Contact",
email: "orga@cebula.camp",
email: common.orgaEmail,
},
credits: {
title: "Credits",