Skip to content

Commit

Permalink
agenda coming soon indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
lassejaco committed Sep 24, 2024
1 parent 632df5f commit 4a5d254
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion devcon/src/pages/devcon-week.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,12 @@ export default pageHOC(function DevconWeek(props: any) {
</div>

<div className={cn('mb-6', css['devcon-week'])} id="schedule">
<div className="section mt-6">
<Alert className="rounded-lg mb-6 font-bold !bg-[#ffede9] orange !normal-case">
{devconWeek && devconWeek.alert && <RichText content={devconWeek.alert} />}
</Alert>
</div>

<EventSchedule
// @ts-ignore
events={eventsFullRange}
Expand Down Expand Up @@ -227,7 +233,7 @@ export default pageHOC(function DevconWeek(props: any) {
className="absolute right-0 h-full !object-right object-contain"
/>

<div className="absolute w-full h-full flex flex-col gap-4 items-center justify-center align-center">
<div className="absolute w-full h-full flex flex-col gap-3 items-center justify-center align-center">
<Image
src={LogoFlowers}
alt="Blocked Event Graphic"
Expand All @@ -243,6 +249,8 @@ export default pageHOC(function DevconWeek(props: any) {
<Button color="purple-1" fill className="semi-bold shadow-xl">
Devcon Main Event →
</Button>

<p className="text-xs font-bold">Agenda Coming Soon</p>
{/* </Link> */}
</div>
</Link>
Expand Down

0 comments on commit 4a5d254

Please sign in to comment.