File tree Expand file tree Collapse file tree 9 files changed +9
-0
lines changed Expand file tree Collapse file tree 9 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ const sitemap = async () => {
13
13
priority : 1 ,
14
14
changefreq : 'daily' ,
15
15
} ,
16
+ // Temporarily disable pages while we work on them
16
17
// {
17
18
// url: '/participation',
18
19
// lastmod: new Date().toISOString(),
Original file line number Diff line number Diff line change @@ -322,6 +322,7 @@ const About = () => {
322
322
} ;
323
323
324
324
export const getStaticProps = async ( ) => {
325
+ // This page is not yet ready for public access, so we will return a 404
325
326
const shouldRender404 = true ;
326
327
327
328
if ( shouldRender404 ) {
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ const Auth = () => {
155
155
} ;
156
156
157
157
export const getStaticProps = async ( ) => {
158
+ // This page is not yet ready for public access, so we will return a 404
158
159
const shouldRender404 = true ;
159
160
160
161
if ( shouldRender404 ) {
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ const Donate = ({ projects }) => {
182
182
} ;
183
183
184
184
export const getStaticProps = async ( ) => {
185
+ // This page is not yet ready for public access, so we will return a 404
185
186
const shouldRender404 = true ;
186
187
187
188
if ( shouldRender404 ) {
Original file line number Diff line number Diff line change @@ -224,6 +224,7 @@ const Events = () => {
224
224
} ;
225
225
226
226
export const getStaticProps = async ( ) => {
227
+ // This page is not yet ready for public access, so we will return a 404
227
228
const shouldRender404 = true ;
228
229
229
230
if ( shouldRender404 ) {
Original file line number Diff line number Diff line change @@ -350,6 +350,7 @@ const Participation = () => {
350
350
} ;
351
351
352
352
export const getStaticProps = async ( ) => {
353
+ // This page is not yet ready for public access, so we will return a 404
353
354
const shouldRender404 = true ;
354
355
355
356
if ( shouldRender404 ) {
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ const Profile = () => {
137
137
} ;
138
138
139
139
export const getStaticProps = async ( ) => {
140
+ // This page is not yet ready for public access, so we will return a 404
140
141
const shouldRender404 = true ;
141
142
142
143
if ( shouldRender404 ) {
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ const Register = () => {
114
114
} ;
115
115
116
116
export const getStaticProps = async ( ) => {
117
+ // This page is not yet ready for public access, so we will return a 404
117
118
const shouldRender404 = true ;
118
119
119
120
if ( shouldRender404 ) {
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ const Report = () => {
225
225
} ;
226
226
227
227
export const getStaticProps = async ( ) => {
228
+ // This page is not yet ready for public access, so we will return a 404
228
229
const shouldRender404 = true ;
229
230
230
231
if ( shouldRender404 ) {
You can’t perform that action at this time.
0 commit comments