Skip to content

Under construction added to team page #134

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ const Navbar = () => {
<Link href="/who-we-are" legacyBehavior>
<span className={TEXT_CLASSES}>About</span>
</Link>
<Link href="/our-team" legacyBehavior>
<span className={TEXT_CLASSES}>Our Team</span>
</Link>
<Link href="/newsletter" legacyBehavior>
<span className={TEXT_CLASSES}>News</span>
</Link>
Expand Down
12 changes: 12 additions & 0 deletions components/UnderConstruction.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Heading from './Heading';
import { UnderlineTypes } from '../utils/underlineType';

const UnderConstruction = () => {
return (
<section className="h-screen p-12">
<Heading underlineType={UnderlineTypes.IGE_SHORT_UNDERLINE_DIR}>Under Construction</Heading>
</section>
);
};

export default UnderConstruction;
11 changes: 11 additions & 0 deletions pages/our-team/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import UnderConstruction from '../../components/UnderConstruction';

const OurTeam = () => {
return (
<div>
<UnderConstruction />
</div>
);
};

export default OurTeam;