9 lines
305 B
TypeScript
9 lines
305 B
TypeScript
export default function Footer() {
|
|
return (
|
|
<footer className="bg-white mt-auto">
|
|
<div className="container mx-auto py-4 px-4 text-center text-gray-500">
|
|
© {new Date().getFullYear()} ImageBoard. All rights reserved.
|
|
</div>
|
|
</footer>
|
|
)
|
|
} |