import { type ReactNode } from 'react'; export const LayoutWithGradient = ({ children }: { children: ReactNode }) => { return (
{children}
); };