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 11import Layout from "@/components/Layout" ;
22import PageBody from "@/components/PageBody" ;
33import PageTitle from "@/components/PageTitle" ;
4+ import TabTitle from 'next/head'
45
56const ConstitutionPage = ( ) => {
67 return (
78 < Layout >
9+ < TabTitle >
10+ < title > Constitution | CseSoc UNSW</ title >
11+ </ TabTitle >
812 < PageTitle title = "CONSTITUTION" />
913 < PageBody >
1014 < div >
@@ -52,4 +56,4 @@ const ConstitutionPage = () => {
5256 ) ;
5357}
5458
55- export default ConstitutionPage ;
59+ export default ConstitutionPage ;
Original file line number Diff line number Diff line change 11import Layout from "@/components/Layout" ;
22import PageBody from "@/components/PageBody" ;
33import PageTitle from "@/components/PageTitle" ;
4+ import TabTitle from 'next/head'
45
56const ElectionGuidePage = ( ) => {
67 return (
78 < Layout >
9+ < TabTitle >
10+ < title > Constitution | CseSoc UNSW</ title >
11+ </ TabTitle >
812 < PageTitle title = "ELECTION GUIDE" />
913 < PageBody >
1014 < div >
@@ -114,4 +118,4 @@ const ElectionGuidePage = () => {
114118 ) ;
115119} ;
116120
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";
33import PageBody from "@/components/PageBody" ;
44import PageTitle from "@/components/PageTitle" ;
55import { EXECS } from "@/../public/data/execs" ;
6+ import TabTitle from 'next/head'
67
78const ExecsDirectorsSubcommitteesPage = ( ) => {
89 return (
910 < Layout >
11+ < TabTitle >
12+ < title > Execs, Directors, Subcom | CseSoc UNSW</ title >
13+ </ TabTitle >
1014 < PageTitle title = "EXECS, DIRECTORS & SUBCOMMITTEES" />
1115 < PageBody >
1216 { /* CSESOC TEAM */ }
Original file line number Diff line number Diff line change 11import Layout from "@/components/Layout" ;
22import PageBody from "@/components/PageBody" ;
33import PageTitle from "@/components/PageTitle" ;
4+ import TabTitle from 'next/head'
45
56const FaqsPage = ( ) => {
67 return (
78 < Layout >
9+ < TabTitle >
10+ < title > FAQs | CseSoc UNSW</ title >
11+ </ TabTitle >
812 < PageTitle title = "FREQUENTLY ASKED QUESTIONS" />
913 < PageBody >
1014 < div >
@@ -54,4 +58,4 @@ const FaqsPage = () => {
5458 ) ;
5559} ;
5660
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';
77export default function AboutPage ( ) {
88 return (
99 < Layout >
10-
1110 < TabTitle >
1211 < title > About Us | CseSoc UNSW</ title >
1312 </ TabTitle >
Original file line number Diff line number Diff line change 11import Layout from "@/components/Layout" ;
22import PageBody from "@/components/PageBody" ;
33import PageTitle from "@/components/PageTitle" ;
4+ import TabTitle from 'next/head'
45import { useState } from "react" ;
56
67const MIN_YEAR = 2007 ;
@@ -13,6 +14,10 @@ const OurHistoryPage = () => {
1314
1415 return (
1516 < Layout >
17+ < TabTitle >
18+ < title > Our History | CseSoc UNSW</ title >
19+ </ TabTitle >
20+
1621 < PageTitle title = "OUR HISTORY" />
1722 < PageBody >
1823 < div >
You can’t perform that action at this time.
0 commit comments