'use client'; import GlobalContext from '@/context/GlobalContext'; import { useContext } from 'react'; import { SlEye } from 'react-icons/sl'; interface IProps { title: string; views?: number; } const SectionTitle = ({ title, views }: IProps) => { const { theme } = useContext(GlobalContext).themeContext; return (