Skip to content

Commit 236ed84

Browse files
committed
docs: use current year on footers copy
1 parent 7e2dfdb commit 236ed84

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

internal/docs/ui/modules/footer.templ

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package modules
22

3-
import "github.com/deeploy-sh/deeploy/internal/shared/utils"
3+
import (
4+
"time"
5+
6+
"github.com/deeploy-sh/deeploy/internal/shared/utils"
7+
)
48

59
templ FooterLinks(stars int) {
610
<footer class="mt-4 md:mt-5 flex border border-border bg-card shadow-[8px_8px_0_0_rgba(0,0,0,0.45)] dark:shadow-[8px_8px_0_0_rgba(255,255,255,0.16)]">
@@ -29,6 +33,6 @@ templ FooterLinks(stars int) {
2933

3034
templ FooterCopyright() {
3135
<div class="py-8 text-center text-muted-foreground">
32-
© 2025 <a href="https://axeladrian.com" target="_blank" class="font-semibold underline underline-offset-4 hover:text-foreground transition-colors">Axel Adrian</a>
36+
© { time.Now().Year() } <a href="https://axeladrian.com" target="_blank" class="font-semibold underline underline-offset-4 hover:text-foreground transition-colors">Axel Adrian</a>
3337
</div>
3438
}

0 commit comments

Comments
 (0)