Initial commit
This commit is contained in:
31
src/app/page.tsx
Executable file
31
src/app/page.tsx
Executable 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user