File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ const Navbar = () => {
24
24
< Link href = "/who-we-are" legacyBehavior >
25
25
< span className = { TEXT_CLASSES } > About</ span >
26
26
</ Link >
27
+ < Link href = "/our-team" legacyBehavior >
28
+ < span className = { TEXT_CLASSES } > Our Team</ span >
29
+ </ Link >
27
30
< Link href = "/newsletter" legacyBehavior >
28
31
< span className = { TEXT_CLASSES } > News</ span >
29
32
</ Link >
Original file line number Diff line number Diff line change
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 ;
Original file line number Diff line number Diff line change
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 ;
You can’t perform that action at this time.
0 commit comments