Files
cecilia/app/(pages)/layout.tsx
tuna2134 f5d237ae17 ok
2025-05-03 13:44:06 +00:00

17 lines
319 B
TypeScript

import Header from "@/components/ui/header";
interface Props {
children: React.ReactNode;
}
const Layout: React.FC<Props> = ({ children }) => {
return (
<>
<Header />
<main className="mx-auto my-6 max-w-3xl px-4">{children}</main>
</>
);
};
export default Layout;