import { type PropsWithChildren } from 'react' import { Container } from '@/components/Container' export function SimpleLayout({ title, intro, children, }: PropsWithChildren<{ title: string; intro: string }>) { return (

{title}

{intro}

{children}
) }