kx3dex_radio/components/ui/footer.tsx

12 lines
280 B
TypeScript

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>
)
}