首页页面

This commit is contained in:
2025-03-11 14:57:23 +08:00
parent 9b36ab40f2
commit 5e3ade9aba
38 changed files with 1092 additions and 182 deletions

14
src/components/wrap.tsx Normal file
View File

@@ -0,0 +1,14 @@
import {ReactNode} from 'react'
export type WrapProps = {
children: ReactNode
className?: string
}
export default function Wrap(props: WrapProps) {
return (
<div className={`w-[1200px] h-full mx-auto ${props.className}`}>
{props.children}
</div>
)
}