kx3dex_radio/components/footer.tsx

12 lines
280 B
TypeScript
Raw Normal View History

2024-03-24 06:08:52 +00:00
import Link from 'next/link'
import Image from 'next/image'
export default function Footer() {
return (
<footer className="w-full relative flex items-center justify-between max-w-5xl mx-auto px-4 py-5">
<p></p>
<p>Copyright &copy; 2024</p>
</footer>
)
}