"use client"; import Link from "next/link"; import { ThemeToggle } from "./theme-toggle"; import { Logo } from "./logo"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; export function Wrapper(props: { children: React.ReactNode }) { return (

BETTER-AUTH.

{props.children}
); } const queryClient = new QueryClient(); export function WrapperWithQuery(props: { children: React.ReactNode | any }) { return ( {props.children} ); }