"use client";
import React from 'react';
import { motion } from "framer-motion";
import { FaCalendarAlt, FaPlay, FaVideo, FaChalkboardTeacher, FaRocket, FaNewspaper } from 'react-icons/fa';
import Navbar from '@/components/Navbar/navbar';
import Footer from '@/components/footer';
const heading = "Everyday Webinars";
const description = "Step into the world of AI-driven business optimization with our informative webinars. Our experts are here to guide you through the ins and outs of the Everyday platform, showcasing how you can leverage our tools to drive your business forward.";
const webinarLink = "https://everydayseries.com/podcasts/";
const featuredWebinars = [
{
title: "Mastering the Everyday Platform: A Comprehensive Tour",
excerpt: "Join our AI specialists as they take you on a comprehensive journey through the Everyday platform. Discover how our drag-and-drop AI builder, diverse input/output forms, Marketplace, and expansive integrations can redefine your enterprise operations.",
category: "Platform Overview",
date: "Feb 26, 2025 • 2:00 PM EST",
icon: ,
image: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fHdlYmluYXJ8ZW58MHx8MHx8fDA%3D"
},
{
title: "AI-Driven Business Intelligence: From Data to Decisions",
excerpt: "Explore how to transform raw business data into actionable insights using Everyday's AI capabilities. Learn practical applications for various departments including sales, marketing, and operations.",
category: "Business Intelligence",
date: "Mar 5, 2025 • 1:00 PM EST",
icon: ,
image: "https://images.unsplash.com/photo-1573164713988-8665fc963095?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8ZGF0YSUyMGFuYWx5c2lzfGVufDB8fDB8fHww"
},
{
title: "Building Custom AI Workflows: Advanced Techniques",
excerpt: "Take your AI workflow skills to the next level. This advanced session covers complex scenarios, custom integrations, and best practices for enterprise-grade workflow development.",
category: "Advanced Training",
date: "Mar 12, 2025 • 3:00 PM EST",
icon: ,
image: "https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8YWR2YW5jZWQlMjB0ZWNobm9sb2d5fGVufDB8fDB8fHww"
}
];
const webinarCategories = [
{
title: "Live Webinars",
description: "Join interactive sessions with real-time Q&A and demonstrations",
icon:
},
{
title: "On-Demand",
description: "Access our library of recorded webinars to learn at your own pace",
icon:
},
{
title: "Getting Started",
description: "Perfect for newcomers looking to quickly understand and implement our platform",
icon:
},
{
title: "Advanced Training",
description: "Deep dives into complex features and advanced use cases for power users",
icon:
}
];
const WebinarSection = () => {
return (
{/* Background glow effects */}
{/* Header Section */}
{/* Webinar Types Section */}
Live and On-Demand Webinars
Whether you prefer live interaction or learning at your own pace, we've got you covered.
Our webinars are available both live and on-demand, providing flexibility for your busy schedule.
{/* Featured Webinars */}
{/* CTA Section */}
Register For Upcoming Webinars
Looking to dive deeper into the world of AI-driven enterprise solutions? Register for our upcoming webinars and join the conversation.
View All Webinars
{/* Newsletter Signup / CTA */}
);
};
export default WebinarSection;