()
| 1 | import React from 'react' |
| 2 | |
| 3 | const Footer = () => { |
| 4 | const currentYear = new Date().getFullYear(); |
| 5 | |
| 6 | return ( |
| 7 | <footer className='bg-gray-900 text-white flex items-center justify-center px-4 h-16'> |
| 8 | <p className='text-center'>Copyright © {currentYear} Get me A Chai - All rights reserved!</p> |
| 9 | </footer> |
| 10 | ) |
| 11 | } |
| 12 | |
| 13 | export default Footer |
nothing calls this directly
no outgoing calls
no test coverage detected