1// SectionContext is deprecated - components now use PageThemeContext from Layout
2// This file is kept for backwards compatibility but should not be used
3import{createContext}from'react';45exportconstSectionContext=createContext<{theme: string}>({6theme:'default',7});