Skip to content

Commit 997df08

Browse files
author
Abigia Debebe
committed
Under construction added to team page
1 parent 08020c6 commit 997df08

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

components/Navbar.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ const Navbar = () => {
2424
<Link href="/who-we-are" legacyBehavior>
2525
<span className={TEXT_CLASSES}>About</span>
2626
</Link>
27+
<Link href="/our-team" legacyBehavior>
28+
<span className={TEXT_CLASSES}>Our Team</span>
29+
</Link>
2730
<Link href="/newsletter" legacyBehavior>
2831
<span className={TEXT_CLASSES}>News</span>
2932
</Link>

components/UnderConstruction.jsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import Heading from './Heading';
2+
import { UnderlineTypes } from '../utils/underlineType';
3+
4+
const UnderConstruction = () => {
5+
return (
6+
<section className="h-screen p-12">
7+
<Heading underlineType={UnderlineTypes.IGE_SHORT_UNDERLINE_DIR}>Under Construction</Heading>
8+
</section>
9+
);
10+
};
11+
12+
export default UnderConstruction;

pages/our-team/index.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import UnderConstruction from '../../components/UnderConstruction';
2+
3+
const OurTeam = () => {
4+
return (
5+
<div>
6+
<UnderConstruction />
7+
</div>
8+
);
9+
};
10+
11+
export default OurTeam;

0 commit comments

Comments
 (0)