diff --git a/www/app/webinars/[ai-operational-assistant]/page.tsx b/www/app/webinars/[ai-operational-assistant]/page.tsx new file mode 100644 index 00000000..e7d229ca --- /dev/null +++ b/www/app/webinars/[ai-operational-assistant]/page.tsx @@ -0,0 +1,133 @@ +"use client"; +import { useEffect, useState } from 'react'; +import Link from 'next/link'; + +export default function WebinarPage() { + const [countdown, setCountdown] = useState({ + days: 0, + hours: 0, + minutes: 0, + seconds: 0 + }); + + useEffect(() => { + const targetDate = new Date('2024-02-05T18:00:00Z'); // 12pm CST + + const updateCountdown = () => { + const now = new Date(); + const difference = targetDate.getTime() - now.getTime(); + + setCountdown({ + days: Math.floor(difference / (1000 * 60 * 60 * 24)), + hours: Math.floor((difference / (1000 * 60 * 60)) % 24), + minutes: Math.floor((difference / 1000 / 60) % 60), + seconds: Math.floor((difference / 1000) % 60) + }); + }; + + const timer = setInterval(updateCountdown, 1000); + return () => clearInterval(timer); + }, []); + + return ( +
+ From Simple Automation to Strategic Implementation +
+ ++ Wednesday, February 5th @ 12pm CST +
+ ++ The hype around AI agents might be a little premature. + But operational assistants are very real, available today, and can unlock your team to do their best work. +
++ In this session, Monadical cofounder Max McCrea will dive into what operational assistants are + and how you can implement them in your organization to deliver real, tangible value. +
++ Plan to walk away with a clear understanding of how to implement AI solutions in your organization, + with live demos of actual implementations and plenty of time for Q&A to address your specific challenges. +
+ + + RSVP HERE + + +