File tree Expand file tree Collapse file tree 1 file changed +17
-9
lines changed
src/app/(dashboard)/dashboard/application Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -5,20 +5,28 @@ import Application from "@/components/Application";
55import ApplicationSkeleton from "@/components/ApplicationSkeleton" ;
66import SubmittedApplication from "@/components/SubmittedApplication" ;
77import { useDashboardCtx } from "@/lib/dashboard-ctx" ;
8+ import { Icon } from "@iconify/react" ;
89
910export default function ApplicationPage ( ) {
10- const { applicationStatus } = useDashboardCtx ( ) ;
11+ const { applicationStatus} = useDashboardCtx ( ) ;
1112
1213 return (
1314 < >
14- { applicationStatus ?. status &&
15- < SubmittedApplication />
16- }
17- { ( applicationStatus === null || applicationStatus . status === "unsubmitted" ) &&
18- < Suspense fallback = { < ApplicationSkeleton /> } >
19- < Application />
20- </ Suspense >
21- }
15+ { /*{applicationStatus?.status &&*/ }
16+ { /* <SubmittedApplication/>*/ }
17+ { /*}*/ }
18+ { /*{(applicationStatus === null || applicationStatus.status === "unsubmitted") &&*/ }
19+ { /* <Suspense fallback={<ApplicationSkeleton/>}>*/ }
20+ { /* <Application/>*/ }
21+ { /* </Suspense>*/ }
22+ { /*}*/ }
23+ < div className = "flex flex-col justify-center items-center h-screen text-gray-700 px-12 lg:px-20" >
24+ < div className = "min-h-24" >
25+ < Icon className = "text-6xl text-error-500 mb-8" icon = "fluent:dismiss-circle-28-regular" />
26+ </ div >
27+ < h1 className = "text-5xl font-semibold" > Applications closed</ h1 >
28+ < p className = "text-lg mt-4" > EurekaHACKS 2025 has concluded. Stay tuned for EurekaHACKS 2026!</ p >
29+ </ div >
2230 </ >
2331 ) ;
2432}
You can’t perform that action at this time.
0 commit comments