import Container from '@/components/layout/container'; import type { PropsWithChildren } from 'react'; export default function PageLayout({ children }: PropsWithChildren) { return (
{children}
); }