File tree Expand file tree Collapse file tree 6 files changed +24
-4
lines changed Expand file tree Collapse file tree 6 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 1
1
import Layout from "@/components/Layout" ;
2
2
import PageBody from "@/components/PageBody" ;
3
3
import PageTitle from "@/components/PageTitle" ;
4
+ import TabTitle from 'next/head'
4
5
5
6
const ConstitutionPage = ( ) => {
6
7
return (
7
8
< Layout >
9
+ < TabTitle >
10
+ < title > Constitution | CseSoc UNSW</ title >
11
+ </ TabTitle >
8
12
< PageTitle title = "CONSTITUTION" />
9
13
< PageBody >
10
14
< div >
@@ -52,4 +56,4 @@ const ConstitutionPage = () => {
52
56
) ;
53
57
}
54
58
55
- export default ConstitutionPage ;
59
+ export default ConstitutionPage ;
Original file line number Diff line number Diff line change 1
1
import Layout from "@/components/Layout" ;
2
2
import PageBody from "@/components/PageBody" ;
3
3
import PageTitle from "@/components/PageTitle" ;
4
+ import TabTitle from 'next/head'
4
5
5
6
const ElectionGuidePage = ( ) => {
6
7
return (
7
8
< Layout >
9
+ < TabTitle >
10
+ < title > Constitution | CseSoc UNSW</ title >
11
+ </ TabTitle >
8
12
< PageTitle title = "ELECTION GUIDE" />
9
13
< PageBody >
10
14
< div >
@@ -114,4 +118,4 @@ const ElectionGuidePage = () => {
114
118
) ;
115
119
} ;
116
120
117
- export default ElectionGuidePage ;
121
+ export default ElectionGuidePage ;
Original file line number Diff line number Diff line change @@ -3,10 +3,14 @@ import Layout from "@/components/Layout";
3
3
import PageBody from "@/components/PageBody" ;
4
4
import PageTitle from "@/components/PageTitle" ;
5
5
import { EXECS } from "@/../public/data/execs" ;
6
+ import TabTitle from 'next/head'
6
7
7
8
const ExecsDirectorsSubcommitteesPage = ( ) => {
8
9
return (
9
10
< Layout >
11
+ < TabTitle >
12
+ < title > Execs, Directors, Subcom | CseSoc UNSW</ title >
13
+ </ TabTitle >
10
14
< PageTitle title = "EXECS, DIRECTORS & SUBCOMMITTEES" />
11
15
< PageBody >
12
16
{ /* CSESOC TEAM */ }
Original file line number Diff line number Diff line change 1
1
import Layout from "@/components/Layout" ;
2
2
import PageBody from "@/components/PageBody" ;
3
3
import PageTitle from "@/components/PageTitle" ;
4
+ import TabTitle from 'next/head'
4
5
5
6
const FaqsPage = ( ) => {
6
7
return (
7
8
< Layout >
9
+ < TabTitle >
10
+ < title > FAQs | CseSoc UNSW</ title >
11
+ </ TabTitle >
8
12
< PageTitle title = "FREQUENTLY ASKED QUESTIONS" />
9
13
< PageBody >
10
14
< div >
@@ -54,4 +58,4 @@ const FaqsPage = () => {
54
58
) ;
55
59
} ;
56
60
57
- export default FaqsPage ;
61
+ export default FaqsPage ;
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import TabTitle from 'next/head';
7
7
export default function AboutPage ( ) {
8
8
return (
9
9
< Layout >
10
-
11
10
< TabTitle >
12
11
< title > About Us | CseSoc UNSW</ title >
13
12
</ TabTitle >
Original file line number Diff line number Diff line change 1
1
import Layout from "@/components/Layout" ;
2
2
import PageBody from "@/components/PageBody" ;
3
3
import PageTitle from "@/components/PageTitle" ;
4
+ import TabTitle from 'next/head'
4
5
import { useState } from "react" ;
5
6
6
7
const MIN_YEAR = 2007 ;
@@ -13,6 +14,10 @@ const OurHistoryPage = () => {
13
14
14
15
return (
15
16
< Layout >
17
+ < TabTitle >
18
+ < title > Our History | CseSoc UNSW</ title >
19
+ </ TabTitle >
20
+
16
21
< PageTitle title = "OUR HISTORY" />
17
22
< PageBody >
18
23
< div >
You can’t perform that action at this time.
0 commit comments