2025-09-26 23:35:28 +03:00

13 lines
452 B
TypeScript

export default function Footer() {
return (
<footer>
<div class="content-wrapper">
<p>
© 2024-2025 <a href="https://github.com/eliandoran">Elian Doran</a> and the <a href="https://github.com/TriliumNext/Notes/graphs/contributors">team</a>.<br />
© 2017-2024 <a href="https://github.com/zadam">zadam</a>.
</p>
</div>
</footer>
)
}