mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 23:29:02 +02:00
13 lines
452 B
TypeScript
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>
|
|
)
|
|
}
|