File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/app/(authenticated)/home Expand file tree Collapse file tree 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";
2121import { SPIN_WHEEL_MAXIMUM } from "@/constants" ;
2222import { EventService } from "@/services/EventService" ;
2323import { FileUser , Users } from "lucide-react" ;
24+ import MessageCard from "@/components/MessageCard" ;
2425
2526const N_SESSION_TILES = 3 ;
2627const N_COMPANY_TILES = 15 ;
@@ -79,14 +80,16 @@ export default async function Home() {
7980 user . company [ 0 ] . company ,
8081 ) ) ;
8182
83+ console . log ( "Download CVs Links" , downloadCVsLinks ) ;
84+
8285 return (
8386 < div className = "container mx-auto" >
8487 { /* Spin the Wheel Section */ }
8588 { showSpinWheelSection && (
8689 < ProgressBar
8790 current = { Math . min (
8891 spinWheelData ?. signatures . length ?? 0 ,
89- SPIN_WHEEL_MAXIMUM
92+ SPIN_WHEEL_MAXIMUM ,
9093 ) }
9194 maximum = { SPIN_WHEEL_MAXIMUM }
9295 title = "Companies Visited Today"
@@ -105,6 +108,7 @@ export default async function Home() {
105108 { /* Download CVs section */ }
106109 { downloadCVsLinks && (
107110 < List title = "Download CVs" >
111+ < MessageCard type = "info" content = "CVs will be available after 5pm" />
108112 { downloadCVsLinks . all && (
109113 < Link
110114 className = "button-primary text-sm"
You can’t perform that action at this time.
0 commit comments