funes-memory 1.0.0

Your machine's memory, queryable. Local AI memory for the terminal.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use client";

import { ThemeProvider as NextThemesProvider } from "next-themes";

export function ThemeProvider({ children }: { children: React.ReactNode }) {
  return (
    <NextThemesProvider
      attribute="class"
      defaultTheme="dark"
      enableSystem
    >
      {children}
    </NextThemesProvider>
  );
}