[fix] reorganize some modules

This commit is contained in:
PrinOrange
2024-08-16 10:41:36 +08:00
parent 7534b81eb4
commit 9198482c46
18 changed files with 17 additions and 17 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="flex-grow px-5 md:px-10 lg:px-20 xl:px-32 2xl:px-52">{children}</main>;
};