Skip to content

Commit 4b655ef

Browse files
committed
refactor(TheFooter): add current year
1 parent f0edc6c commit 4b655ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/i18n/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"side_navigation": "Side Navigation"
1616
},
1717
"footer": {
18-
"copyright": "© 2025 beaconcha.in. All rights reserved",
18+
"copyright": "© {year} beaconcha.in. All rights reserved",
1919
"imprint": "Imprint",
2020
"links": {
2121
"follow_us": "Follow us on social media to find out the latest updates on our progress.",

frontend/layers/base/app/components/TheFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ const resourceLinks: Link[] = [
194194
{{ $t('base.footer.privacy') }}
195195
</NuxtLink>
196196
</div>
197-
<span class="flex self-center sm:order-1">{{ $t('base.footer.copyright') }}</span>
197+
<span class="flex self-center sm:order-1">{{ $t('base.footer.copyright', { year: new Date().getFullYear() }) }}</span>
198198
</div>
199199
</div>
200200
</div>

0 commit comments

Comments
 (0)