- CI: replace Node/npm with Bun - Add view-transition animations for theme toggle - Set html background for flash-free theme switches - UI refinements to download button, brew command, and layout - Replace package-lock.json with bun.lock
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "next-themes";
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<ThemeProvider attribute="class" defaultTheme="dark">
|
|
{children}
|
|
</ThemeProvider>
|
|
);
|
|
}
|