initial commit

This commit is contained in:
PrinOrange
2023-12-25 17:21:39 +08:00
commit 0bd1089d74
94 changed files with 18648 additions and 0 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="responsive-width">{children}</main>;
};