mirror of
https://github.com/woodchen-ink/clash-and-dashboard.git
synced 2025-07-18 14:01:56 +08:00
22 lines
549 B
TypeScript
22 lines
549 B
TypeScript
import * as React from 'react'
|
|
import logo from '@assets/logo-fixing.svg'
|
|
|
|
export default function Overview () {
|
|
return (
|
|
<div style={{
|
|
height: '90vh',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
flexDirection: 'column',
|
|
opacity: 0.3,
|
|
}}>
|
|
<img src={logo} alt="Logo" style={{
|
|
width: 200,
|
|
}}/>
|
|
|
|
<h1 style={{ color: '#54759A', marginTop: 20 }}>Coming Soon...</h1>
|
|
</div>
|
|
)
|
|
}
|