"use client"; import React, { useRef } from 'react'; import { motion, useScroll, useInView } from "framer-motion"; import Navbar from '@/components/Navbar/navbar'; import Footer from '@/components/footer'; const Community = () => { // Animation variants const fadeUp = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.7, ease: "easeOut" } } }; const staggerContainer = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.15 } } }; const cardVariant = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.5, ease: "easeOut" } } }; return (
{/* Hero Section */} Community Connect, Collaborate, and Innovate At Everyday Series, our community is the heartbeat of our innovation. We're building a vibrant network of solopreneurs, developers, AI enthusiasts, and business leaders committed to transforming expertise into powerful AI agents and solutions. Explore Our Offerings Join The Community {/* What We Offer Section */}
What We Offer
{/* Events & Online Meetups */}

Events & Online Meetups

  • Live Events: Attend interactive events and online meetups where industry experts and fellow innovators share insights, success stories, and the latest trends in AI.
  • Webinars: Participate in immersive webinars that dive deep into AI technologies, product demos, and hands-on sessions tailored for solopreneurs and enterprises alike.
{/* Cohort-Based Learning */}

Cohort-Based Learning

  • Structured Programs: Enroll in our cohort-based learning initiatives, including our remote Generative AI Readiness Program, designed for corporates, universities, and individual innovators.
  • Collaborative Learning: Work alongside peers in a guided environment where practical projects and real-world challenges help refine your AI skills.
{/* Instant Connectivity */}

Instant Connectivity

  • Whatsapp Group: Join our dedicated Whatsapp group for real-time updates, lively discussions, and instant support from fellow community members.
  • Open Source Modules: Contribute to and leverage our extensive library of open source modules—collaborate, share, and build solutions that benefit everyone in the community.
{/* Collaborative Partnerships - Full width */}

Collaborative Partnerships

Solopreneur Network

Connect with a diverse group of solopreneurs offering innovative products and services, creating opportunities for cross-collaboration.

SMBs & Enterprise

We partner with small and medium businesses as well as enterprise organizations to co-create and deploy cutting-edge AI solutions that drive growth and efficiency.

{/* Why Join Us Section */}
Why Join Us?

Learn & Grow

Gain exclusive access to resources, expert-led sessions, and collaborative projects that enhance your skills and expand your network.

Innovate Together

Be a part of a community where your ideas matter, and collective intelligence sparks breakthrough innovations.

Real-World Impact

Engage with partners and industry leaders to develop AI solutions that solve real business challenges and drive market success.

{/* Call to Action Section */} Get Involved Ready to shape the future of AI? Join our community and unlock a world of opportunities. Connect, collaborate, and innovate with like-minded individuals who are as passionate about technology and growth as you are. Join Our Community Learn More About Our Initiatives
); }; export default Community;