"use client"; import { ProgressProvider } from "@bprogress/next/app"; import { config } from "@repo/config"; import { Toaster } from "@ui/components/toast"; import { ThemeProvider } from "next-themes"; import type { PropsWithChildren } from "react"; export function ClientProviders({ children }: PropsWithChildren) { return ( {children} ); }