Files
cabrits-math/app/lessons/layout.tsx
2026-07-05 11:12:45 -04:00

18 lines
436 B
TypeScript

import { Header } from "@/components/layout/header";
import { Footer } from "@/components/layout/footer";
import { LessonsShell } from "@/components/layout/lessons-shell";
export default function LessonsLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="playground-bg flex min-h-screen flex-col">
<Header />
<LessonsShell>{children}</LessonsShell>
<Footer />
</div>
);
}