Compare commits
2 commits
6d5804df3a
...
1278f07adf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1278f07adf | ||
|
|
321a8a45cc |
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
@ -31,7 +32,8 @@ const pl = {
|
|||
},
|
||||
where: {
|
||||
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: {
|
||||
title: "Kiedy",
|
||||
|
|
@ -55,7 +57,7 @@ const pl = {
|
|||
},
|
||||
contact: {
|
||||
title: "Kontakt",
|
||||
email: "contact@cebula.camp",
|
||||
email: common.orgaEmail,
|
||||
},
|
||||
credits: {
|
||||
title: "Uznania",
|
||||
|
|
@ -118,7 +120,7 @@ const en = {
|
|||
},
|
||||
contact: {
|
||||
title: "Contact",
|
||||
email: "contact@cebula.camp",
|
||||
email: common.orgaEmail,
|
||||
},
|
||||
credits: {
|
||||
title: "Credits",
|
||||
|
|
|
|||
Loading…
Reference in a new issue