import React from 'react'; import Navbar from '@/components/Navbar/navbar'; import Footer from "@/components/footer"; import { FaVideo, FaChalkboardTeacher, FaUsers, FaNewspaper, FaPlayCircle } from 'react-icons/fa'; const heading = "Videos: Your Hub for AI Insights & Education"; const description = "Explore in-depth tutorials, engaging panel discussions, and insightful conversations about our AI innovations."; const videoCategories = [ { title: "Tutorials & How-Tos", description: "Learn how to convert your expertise into intelligent AI agents with our easy-to-follow video tutorials.", icon: }, { title: "Expert Conversations & Panels", description: "Gain insights into emerging trends, strategic approaches, and the future of AI technology.", icon: }, { title: "Learning Resources", description: "Access comprehensive videos documenting our product features, case studies, and success stories.", icon: } ]; const featuredContent = [ { title: "Webinars & Live Sessions", description: "Join our live webinars to interact with experts, ask questions in real time, and explore deep dives into specific topics.", button: "Upcoming Events", link: "#", icon: } ]; const subscriptionOptions = [ { title: "Stay Connected", description: "Subscribe to our video updates and marketing insights.", button: "Subscribe Now", link: "/pricing", image: "https://via.placeholder.com/400x300" }, { title: "Explore & Engage", description: "Dive into our video content and unlock a world of knowledge.", subFeatures: [ "Build intelligent AI agents", "Learn industry best practices", "Stay ahead of AI trends" ], button: "Browse Videos", link: "#" } ]; export default function VideosPage() { return (
{/* Hero Section */}

{heading}

{description}

{/* Video Categories Section */}

What You'll Find

{videoCategories.map((category, index) => (
{category.icon}

{category.title}

{category.description}

))}
{/* Featured Content Section */}

Live & Interactive Content

Engage directly with AI experts and stay updated with the latest insights and trends.

{featuredContent.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

{feature.button}
))}
{/* Subscription & Engagement Section */}

Stay Connected & Informed

Transform your expertise into intelligent AI agents with Everyday Series video resources.

{subscriptionOptions.map((option, index) => (
{/* {option.image && {option.title}} */}

{option.title}

{option.description}

{option.subFeatures && (
    {option.subFeatures.map((feature, idx) => (
  • {feature}
  • ))}
)}
{option.button}
))}
); }