MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / Footer

Function Footer

Video 123/website/components/Footer.js:3–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import React from 'react'
2
3const 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
16export default Footer

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected