"use client"; import { UserContext } from "@app/contexts/userContext"; import { ReactNode } from "react"; type LandingProviderProps = { user: boolean ; children: ReactNode; }; export function LandingProvider({ user, children }: LandingProviderProps) { return {children}; } export default LandingProvider;