Files
GLM-Tools-Skills-Agents/src/app/page.tsx
2026-02-11 20:02:36 +00:00

31 lines
596 B
TypeScript
Executable File

'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>
)
}