at main 283 B view raw
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'; 4 5export const SectionContext = createContext<{ theme: string }>({ 6 theme: 'default', 7});