import React from 'react'; import Link from 'next/link'; const Footer = () => { const currentYear = new Date().getFullYear(); return ( <>

Copyright © {currentYear} Design & Developed by HiBootstrap

); } export default Footer;