File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11import { useEffect , useState } from 'react' ;
22import DesktopVersion from './DesktopVersion' ;
3- import Footer from './Footer' ;
3+
4+ import MobileVersion from './MobileVersion' ;
5+ // import Footer from '../Footer';
46
57export default function ContactUs ( ) {
68 const [ screenWidth , setScreenWidth ] = useState < number | null > ( null ) ;
@@ -28,7 +30,7 @@ export default function ContactUs() {
2830 Contact us
2931 </ h2 >
3032 < DesktopVersion />
31- < Footer />
33+ { /* <Footer/> */ }
3234 </ section >
3335 ) ;
3436}
Original file line number Diff line number Diff line change @@ -57,4 +57,4 @@ const Footer = () => {
5757 ) ;
5858} ;
5959
60- export default Footer ;
60+ export default Footer ;
Original file line number Diff line number Diff line change 1+ export { default } from './Footer' ;
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import ContactUs from '../components/ContactUs';
44import Events from '../components/Events/Events' ;
55import MissionPillars from '../components/MissionPillars/MissionPillars' ;
66import HeroHeader from '../components/HeroHeader' ;
7- import Navbar from '../components/Navbar' ;
7+ import Navbar from '../components/Navbar' ; ;
8+ import Footer from '../components/Footer' ;
89
910export default function Home ( ) {
1011 return (
@@ -32,6 +33,7 @@ export default function Home() {
3233 < MissionPillars />
3334 < Events />
3435 < ContactUs />
36+ < Footer />
3537 </ main >
3638 </ div >
3739 ) ;
You can’t perform that action at this time.
0 commit comments