import { type ReactNode } from 'react' import './styles/PaneGlass.css' interface PropsForPaneGlass { children?: ReactNode } export default function PaneGlass({ children }: PropsForPaneGlass) { return (