"use client" import { createContext } from "react" interface ISidePeekContext { handleClose: (isOpen: boolean) => void activeSidePeek: string | null } export const SidePeekContext = createContext(null)