"use client"; import { useEffect, useState } from 'react'; import Link from 'next/link'; import Image from 'next/image'; export default function WebinarPage() { const [countdown, setCountdown] = useState({ days: 0, hours: 0, minutes: 0, seconds: 0 }); useEffect(() => { const targetDate = new Date('2025-02-05T17:00:00Z'); // 12pm EST const updateCountdown = () => { const now = new Date(); const difference = targetDate.getTime() - now.getTime(); // If the target date has passed, show all zeros if (difference < 0) { setCountdown({ days: 0, hours: 0, minutes: 0, seconds: 0 }); return; } 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 EST
AI is ready to deliver value to your organization, but it's not ready to act autonomously. The highest-value applications of AI today are assistants, which significantly increase the efficiency of workers in operational roles. Software companies are reporting 30% improvements in developer output across the board, and there's no reason AI can't deliver the same kind of value to workers in other roles.
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 HERECapture the signal, not the noise