import { cn } from "@/lib/utils" import type React from "react" interface BackgroundWrapperProps { children: React.ReactNode } export default function BackgroundWrapper({ children }: BackgroundWrapperProps) { return (
{children}
) }