This commit is contained in:
tuna2134
2025-05-03 13:44:06 +00:00
parent 16ef79f6c9
commit f5d237ae17
10 changed files with 1169 additions and 2 deletions

16
app/(pages)/layout.tsx Normal file
View File

@@ -0,0 +1,16 @@
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;