9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
export default function Footer() {
|
|
return (
|
|
<footer className="bg-blue-600 text-white p-4 mt-10">
|
|
<div className="container mx-auto text-center">
|
|
© 2025 Template 1
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|