import React, { ReactNode } from "react"; interface BackgroundWrapperProps { children: ReactNode; } const BackgroundWrapper = ({ children }: BackgroundWrapperProps) => { return (