Modules that reorganize layouts components

This commit is contained in:
PrinOrange
2024-01-15 11:06:49 +08:00
parent 9ce7d49ed9
commit 5c51b9895c
10 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
export const Page = ({ children }: { children: React.ReactNode }) => {
return <div className="flex min-h-screen flex-col justify-between">{children}</div>;
};
export const ContentContainer = ({ children }: { children: React.ReactNode }) => {
return <main className="px-5 lg:px-20 xl:px-32 2xl:px-52 flex-grow">{children}</main>;
};