Skip to content

Commit 448157c

Browse files
committed
Add temporary message
1 parent 1152826 commit 448157c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/app/(authenticated)/home/page.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import UserSignOut from "@/components/UserSignOut";
2121
import { SPIN_WHEEL_MAXIMUM } from "@/constants";
2222
import { EventService } from "@/services/EventService";
2323
import { FileUser, Users } from "lucide-react";
24+
import MessageCard from "@/components/MessageCard";
2425

2526
const N_SESSION_TILES = 3;
2627
const 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"

0 commit comments

Comments
 (0)