Initial commit

This commit is contained in:
Z User
2026-02-11 20:02:36 +00:00
Unverified
commit 825024cb66
80 changed files with 9228 additions and 0 deletions

31
src/app/page.tsx Executable file
View File

@@ -0,0 +1,31 @@
'use client'
export default function Home() {
return (
<div style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
minHeight: '100vh',
gap: '2rem',
padding: '1rem'
}}>
<div style={{
position: 'relative',
width: '6rem',
height: '6rem'
}}>
<img
src="/logo.svg"
alt="Z.ai Logo"
style={{
width: '100%',
height: '100%',
objectFit: 'contain'
}}
/>
</div>
</div>
)
}