Skip to content

Commit

Permalink
dynamic footer date for /verify-wallet/components/footer.tsx (solana-…
Browse files Browse the repository at this point in the history
  • Loading branch information
mael-bomane authored Feb 25, 2023
1 parent 1f22ec7 commit 17f2a9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion verify-wallet/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ interface Props {
}

export function GlobalFooter(props: Props) {
const year = new Date().getFullYear();
return (
<footer
className={cx(
Expand Down Expand Up @@ -32,7 +33,7 @@ export function GlobalFooter(props: Props) {
'sm:text-sm',
)}
>
<div>© 2022 Solana Technology Services LLC</div>
<div>© {year} Solana Technology Services LLC</div>
<div className="hidden sm:block mx-2">|</div>
<a href="https://realms.today/terms" target="_blank" rel="noreferrer">
Terms
Expand Down

0 comments on commit 17f2a9c

Please sign in to comment.