Add tablet seller wizard and access controls

This commit is contained in:
2026-05-31 20:59:58 +01:00
parent 14de88945c
commit e794ecceb6
15 changed files with 2330 additions and 211 deletions

View File

@@ -0,0 +1,11 @@
'use client'
import { ThemeProvider as NextThemesProvider } from 'next-themes'
export function ThemeProvider({ children }: { children: React.ReactNode }) {
return (
<NextThemesProvider attribute="class" defaultTheme="system" enableSystem>
{children}
</NextThemesProvider>
)
}