import LearnWithUS from '@/assets/img/learn-with-us.jpg' import { defaultFetcher } from '@/helpers/fetch.helper'; import { APP_BASE_URL } from '@/utils/constants'; import Image from 'next/image'; import useSWR from "swr" const HeroSection: React.FC = () => { const {data : TotalUserCount } = useSWR(APP_BASE_URL + '/api/user/count' , defaultFetcher) return (
RESEARCH-POWERED LEARNING PLATFORM

Connect, Learn, and Grow Together

Join a community where researchers and educators create engaging courses, share knowledge, and help learners validate their understanding through interactive assessments.

Collaborative learning

{}+

Active Learners

); }; export default HeroSection