mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-22 16:55:55 +00:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
|
export default function Footer() {
|
||
|
return (
|
||
|
<footer className="w-full bg-gray-800 p-4">
|
||
|
<div className="container mx-auto text-center text-gray-400">
|
||
|
© {new Date().getFullYear()} Ayden Jahola. All rights reserved.
|
||
|
</div>
|
||
|
</footer>
|
||
|
);
|
||
|
}
|