-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.js
21 lines (20 loc) · 1.09 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const links = {
'/schedule':
'https://www.notion.so/440f7327a62a48ceb15c22fc1c445483?v=63d1c6fb62004b3d904654f4b9991287',
'/guide': 'https://www.notion.so/TuffyHacks-Camper-Guide-b6d48f4c0ccb40d0b3a32aef02cc51eb',
'/activities': 'https://www.notion.so/Activities-4eefbfa9c8d442e489ad5ab6830abcdd',
'/trails': 'https://www.notion.so/Trails-5aead207c2f84387969b8b2ff5049d90',
'/submissions':
'https://www.notion.so/Project-Submission-Judging-6dadfbbc335c468ea08bbf4f8200ad8f',
'/mentors': 'https://www.notion.so/Mentors-72e2a7e1685e4e83bac43f6f579f5cce',
'/classroom-a': 'https://fullerton.zoom.us/j/85266867630',
'/classroom-b': 'https://fullerton.zoom.us/j/84576634429',
'/lodge': 'https://gather.town/app/8iXIeEFqq0LaJRkq/tuffyhacks-2021',
'/faq': 'https://www.notion.so/FAQ-Contact-2664d5ca82b5473aa0eaf9dc3e1dbda4',
'/apply': 'https://forms.gle/CzL3yV1NEmEVcx1fA',
'/donate': 'https://bank.hackclub.com/donations/start/tuffyhacks',
};
module.exports = {
redirects: async () =>
Object.entries(links).map(([source, destination]) => ({ source, destination, permanent: true }))
};