File tree 1 file changed +5
-1
lines changed
src/app/(authenticated)/home
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import UserSignOut from "@/components/UserSignOut";
21
21
import { SPIN_WHEEL_MAXIMUM } from "@/constants" ;
22
22
import { EventService } from "@/services/EventService" ;
23
23
import { FileUser , Users } from "lucide-react" ;
24
+ import MessageCard from "@/components/MessageCard" ;
24
25
25
26
const N_SESSION_TILES = 3 ;
26
27
const N_COMPANY_TILES = 15 ;
@@ -79,14 +80,16 @@ export default async function Home() {
79
80
user . company [ 0 ] . company ,
80
81
) ) ;
81
82
83
+ console . log ( "Download CVs Links" , downloadCVsLinks ) ;
84
+
82
85
return (
83
86
< div className = "container mx-auto" >
84
87
{ /* Spin the Wheel Section */ }
85
88
{ showSpinWheelSection && (
86
89
< ProgressBar
87
90
current = { Math . min (
88
91
spinWheelData ?. signatures . length ?? 0 ,
89
- SPIN_WHEEL_MAXIMUM
92
+ SPIN_WHEEL_MAXIMUM ,
90
93
) }
91
94
maximum = { SPIN_WHEEL_MAXIMUM }
92
95
title = "Companies Visited Today"
@@ -105,6 +108,7 @@ export default async function Home() {
105
108
{ /* Download CVs section */ }
106
109
{ downloadCVsLinks && (
107
110
< List title = "Download CVs" >
111
+ < MessageCard type = "info" content = "CVs will be available after 5pm" />
108
112
{ downloadCVsLinks . all && (
109
113
< Link
110
114
className = "button-primary text-sm"
You can’t perform that action at this time.
0 commit comments