Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/ContactUs/ContactUs.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect, useState } from 'react';
import DesktopVersion from './DesktopVersion';
import MobileVersion from './MobileVersion';
import Footer from './Footer';
// import Footer from '../Footer';

export default function ContactUs() {
const [screenWidth, setScreenWidth] = useState<number | null>(null);
Expand All @@ -26,7 +26,7 @@ export default function ContactUs() {
Contact us
</h2>
<DesktopVersion />
<Footer/>
{/* <Footer/> */}
</section>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ const Footer = () => {
);
};

export default Footer;
export default Footer;
1 change: 1 addition & 0 deletions src/components/Footer/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Footer';
4 changes: 3 additions & 1 deletion src/pages/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import ContactUs from '../components/ContactUs';
import Events from '../components/Events/Events';
import MissionPillars from '../components/MissionPillars/MissionPillars';
import HeroHeader from '../components/HeroHeader';
import Navbar from '../components/Navbar';
import Navbar from '../components/Navbar';;
import Footer from '../components/Footer';

export default function Home() {
return (
Expand Down Expand Up @@ -32,6 +33,7 @@ export default function Home() {
<MissionPillars />
<Events />
<ContactUs />
<Footer />
</main>
</div>
);
Expand Down