diff --git a/app/(pre-dashboard)/(entry)/offseason/page.tsx b/app/(pre-dashboard)/(entry)/offseason/page.tsx new file mode 100644 index 0000000..986655a --- /dev/null +++ b/app/(pre-dashboard)/(entry)/offseason/page.tsx @@ -0,0 +1,62 @@ +"use client"; + +import { useState } from 'react'; +import Image from 'next/image'; +import { Button } from '@/app/ui/button'; + +export default function OffseasonPage() { + return ( +
+ + {/* HackRU Information Section */} +
+

+ HackRU Offseason +

+

+ Thanks for your interest in HackRU! Our registrations are not open yet, but you can follow us on our social channels to stay updated. +

+ +
+ + {/* Photos from the Last HackRU Section */} +
+

+ Photos from the last HackRU +

+
+
+ Photo 1 +
+
+ Photo 2 +
+
+ Photo 3 +
+
+
+ + {/* Linktree Section */} +
+

+ Explore More +

+

+ Check out all our links and resources on our Linktree! +

+ +
+
+ ); +} diff --git a/app/(pre-dashboard)/(landing)/page.tsx b/app/(pre-dashboard)/(landing)/page.tsx index d3d194c..ce4e5ad 100644 --- a/app/(pre-dashboard)/(landing)/page.tsx +++ b/app/(pre-dashboard)/(landing)/page.tsx @@ -13,7 +13,10 @@ import GenericSection from './sections/GenericSection'; import { getSponsors } from '@/app/lib/data'; import React from 'react'; +import { redirect } from 'next/navigation'; + export default async function Page() { + redirect('/offseason'); return (