add new line to org footer text

This commit is contained in:
2025-07-29 11:33:13 +02:00
parent e7b8250eaf
commit 7e176f229f
2 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ const t = translations[lang].footer;
<footer class="flex items-center lg:justify-between justify-center bg-accent text-white py-16 px-18 mt-20"> <footer class="flex items-center lg:justify-between justify-center bg-accent text-white py-16 px-18 mt-20">
<div class="gap-4 items-center justify-center hidden lg:flex"> <div class="gap-4 items-center justify-center hidden lg:flex">
<Image src={logo} alt={t.org} class="hero-logo" width={64} height={64} loading="lazy" /> <Image src={logo} alt={t.org} class="hero-logo" width={64} height={64} loading="lazy" />
<p class="text-white text-2xl">{t.org}</p> <p class="text-white text-2xl" set:html={t.org}></p>
</div> </div>
<div class="flex gap-6 items-center justify-center flex-col text-center"> <div class="flex gap-6 items-center justify-center flex-col text-center">
<Image src={DNS} alt={t.dnsAlt} class="hero-logo" width={200} height={200} loading="lazy" /> <Image src={DNS} alt={t.dnsAlt} class="hero-logo" width={200} height={200} loading="lazy" />

View File

@@ -42,7 +42,7 @@ export const translations = {
}, },
footer: { footer: {
address: "Slemdalsveien 15, 0369 Oslo", address: "Slemdalsveien 15, 0369 Oslo",
org: "Studentfestivalen i Oslo 2025", org: "Studentfestivalen<br>i Oslo 2025",
dnsAlt: "Logo for Det Norske Studentersamfund", dnsAlt: "Logo for Det Norske Studentersamfund",
}, },
}, },
@@ -89,7 +89,7 @@ export const translations = {
}, },
footer: { footer: {
address: "Slemdalsveien 15, 0369 Oslo", address: "Slemdalsveien 15, 0369 Oslo",
org: "Student Festival in Oslo 2025", org: "Student Festival<br>in Oslo 2025",
dnsAlt: "Logo for the Norwegian Student Society", dnsAlt: "Logo for the Norwegian Student Society",
}, },
}, },