"use client"; import React from 'react'; import { motion } from "framer-motion"; import { HoverEffect } from '@/components/ui/card-hover-effect'; import { TextGenerateEffect } from "@/components/ui/text-generate-effect"; import { FaBlog, FaRobot, FaCode, FaLightbulb, FaGlobe, FaBrain, FaRss, FaMicrochip, FaNewspaper } from 'react-icons/fa'; import Navbar from '@/components/Navbar/navbar'; import Footer from '@/components/footer'; import { DotPattern } from '@/components/magicui/dot-pattern'; import { cn } from '@/lib/utils'; const floatingWords = [ "C", "f", "t", "n", "x", "g", "a", "s", "h/", "4", "g.js", "g", "e", "Code", "v", "b", "5", "e", "e", "UI/UX", "6", "js", "2", "e", "Code", "d", "j", "Design", "t", "w", "UI/UX", "t", "t", ]; const generateRandomPosition = () => ({ x: Math.random() * 100 - 50 + "vw", // Random X position y: Math.random() * 100 - 50 + "vh", // Random Y position opacity: Math.random() * 0.5 + 0.3, // Random opacity (faded effect) scale: Math.random() * 0.7 + 0.5, // Random scale for variation }); const heading = "Explore Our Blogs"; const description = "Stay informed with the latest insights on AI agents, enterprise technology, and digital transformation. Our blog features expert articles, practical guides, and thought leadership pieces."; const blogLink = "https://everydayseries.com/?__hstc=131524315.44ca9acfdfb12f3a6754faae18ec617e.1736862124713.1740446338560.1740449080633.32&__hssc=131524315.2.1740449080633&__hsfp=2021807260"; const featuredPosts = [ { title: "The Evolution of AI Agents in Enterprise Workflows", excerpt: "Discover how AI agents are transforming business processes and creating unprecedented efficiency across organizations.", category: "AI Trends", date: "Feb 18, 2025", icon: , image: "https://images.unsplash.com/photo-1677756119517-756a188d2d94?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8YWl8ZW58MHx8MHx8fDA%3D" }, { title: "Building Your First AI Workflow with Everyday", excerpt: "A step-by-step guide to creating powerful, automated workflows using our drag-and-drop AI builder with zero coding required.", category: "Tutorials", date: "Feb 12, 2025", icon: , image: "https://images.unsplash.com/photo-1634476229749-a2e480a919d0?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTJ8fHdvcmtmbG93fGVufDB8fDB8fHww" }, { title: "The Future of Work: How AI is Reshaping Enterprise Collaboration", excerpt: "Explore how artificial intelligence is fundamentally changing how teams work together and make decisions.", category: "Future of Work", date: "Feb 5, 2025", icon: , image: "https://images.unsplash.com/photo-1568992687947-868a62a9f521?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8b2ZmaWNlfGVufDB8fDB8fHww" } ]; const blogCategories = [ { title: "AI Agents", description: "Deep dives into how AI agents work, their capabilities, and real-world applications", icon: }, { title: "Tech Trends", description: "Stay ahead with analysis of emerging technologies and digital transformation strategies", icon: }, { title: "Tutorials & Guides", description: "Practical how-to articles and step-by-step guides for leveraging AI in your workflows", icon: }, { title: "Internet Culture", description: "Exploring how technology is shaping online communities, digital experiences, and society", icon: } ]; const BlogSection = () => { return (
{/* Background glow effects */} {/*
*/}
{/* Header Section */}
{/*
{floatingWords.map((word, index) => ( {word} ))}
*/}
{heading} {description}
{/* Featured Posts */} {/* Blog Categories */}

Explore Topics That Matter

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

{category.title}

{category.description}

))}
{/* Newsletter Signup / CTA */}

Stay Updated with the Latest in AI & Tech

Our blog covers everything from AI agents and how they work to the coolest internet and technology trends. Join our community of forward-thinking innovators.

); }; export default BlogSection;