()
| 1 | import React from 'react' |
| 2 | |
| 3 | const Footer = () => { |
| 4 | return ( |
| 5 | <footer className='flex justify-around bg-slate-800 text-white py-4 text-xs'> |
| 6 | <div className="text-center">Copyright ©️ Facebook | All rights reserved</div> |
| 7 | <ul className='flex gap-2 text-sm'> |
| 8 | <a href='/'><li className='text-xs'>Home</li></a> |
| 9 | <a href='/about'><li className='text-xs'>About</li></a> |
| 10 | <a href='/contact'><li className='text-xs'>Contact</li></a> |
| 11 | </ul> |
| 12 | </footer> |
| 13 | ) |
| 14 | } |
| 15 | |
| 16 | export default Footer |
nothing calls this directly
no outgoing calls
no test coverage detected