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="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>
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue