diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-22 09:28:39 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-22 09:28:39 +0100 |
| commit | 33ba2b1f1d5324e886af7cdc0c2bc006ddb6aa87 (patch) | |
| tree | 57294f27770f17ebaa2e2062e186d37eb51172cc /src | |
| parent | 06bf980b67ee61334c0c760f2d36c856f3c63e69 (diff) | |
Filled-in triangles
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Footer.astro | 2 | ||||
| -rw-r--r-- | src/pages/[locale]/index.astro | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 2a5307e..262a487 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -10,6 +10,6 @@ const t = translate(locale); <footer> <Button layoutClasses="grid-span-3 grid-end" href="#top"> - ▴ {t(tSite, { key: 'back-to-top' })} + ▲ {t(tSite, { key: 'back-to-top' })} </Button> </footer> diff --git a/src/pages/[locale]/index.astro b/src/pages/[locale]/index.astro index 187c3bb..486d2e8 100644 --- a/src/pages/[locale]/index.astro +++ b/src/pages/[locale]/index.astro @@ -25,7 +25,7 @@ const mostRecentNewsItem = await getMostRecentNewsItem(locale); mostRecentNewsItem && ( <div class="grid-span-3 grid-end margin-block-start-sm"> <a href={`/${locale}/news`} class="btn"> - {t(tPage, { key: 'aw-news' })} ▷ + {t(tPage, { key: 'aw-news' })} ▶ </a> </div> ) @@ -37,7 +37,7 @@ const mostRecentNewsItem = await getMostRecentNewsItem(locale); <p set:html={t(tPage, { key: 'furthsettins-para' })} /> <div class="grid-span-3 grid-end margin-block-start-sm"> <a href={`/${locale}/furthsettins`} class="btn"> - {t(tPage, { key: 'aw-furthsettins' })} ▷ + {t(tPage, { key: 'aw-furthsettins' })} ▶ </a> </div> </section> |
