summaryrefslogtreecommitdiff
path: root/src/components/Navbar/Logo.astro
blob: 58bf01d6a722f0d3e684ceee1a39271a5a2e44fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
import translate from '$i18n/translate';
import getLocaleFromPath from '$lib/getLocaleFromPath';
import tSite from '$i18n/translations/site';

const locale = getLocaleFromPath(Astro.url.pathname);
const t = translate(locale);
---

<p class="title--small nav__logo">
  <a href="/">
    {t(tSite, { key: 'scots-leid-associe' })}
  </a>
</p>