export default function DocLayout({ children }) {
  return (
    <section className="flex flex-1 flex-col container p-4">{children}</section>
  );
}