From ffabc5c7cc44e19986b4b1ead15fca3199f889f1 Mon Sep 17 00:00:00 2001 From: Daniel David <114867882+pigrammer3@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:01:12 -0400 Subject: [PATCH] add redirect for signup flyer --- next.config.js | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/next.config.js b/next.config.js index f241327..f50a350 100644 --- a/next.config.js +++ b/next.config.js @@ -21,17 +21,23 @@ const nextConfig = { async redirects() { return [ { - source: '/mm24f1', // Merrimack 2024 Flyer #1 - destination: '/mm24', + source: "/mm24f1", // Merrimack 2024 Flyer #1 + destination: "/mm24", permanent: false, }, { - source: '/mm24', - destination: 'https://www.buacademy.org/stuco/9-14-mayhem-in-merrimack/', + source: "/mm24", + destination: "https://www.buacademy.org/stuco/9-14-mayhem-in-merrimack/", permanent: false, - } - ] - } + }, + { + source: "/qr/2", + destination: + "https://docs.google.com/forms/d/e/1FAIpQLSfeiw1gEi50dhyFuxfNosJI_SDrOAF-ez6BP9hnxDnIEyg7ig/viewform?usp=sf_link", + permanent: false, + }, + ]; + }, }; module.exports = nextConfig;