2022-12-10 12:14:48 +03:00
|
|
|
import './welcome.css';
|
|
|
|
|
2022-12-10 12:38:20 +03:00
|
|
|
import logo from '../assets/logo.svg';
|
2022-12-10 12:14:48 +03:00
|
|
|
import useTitle from '../utils/useTitle';
|
|
|
|
|
|
|
|
export default () => {
|
|
|
|
useTitle();
|
|
|
|
return (
|
|
|
|
<main id="welcome" class="box">
|
|
|
|
<img
|
2022-12-10 12:38:20 +03:00
|
|
|
src={logo}
|
2022-12-10 12:14:48 +03:00
|
|
|
alt=""
|
|
|
|
width="140"
|
|
|
|
height="140"
|
|
|
|
style={{
|
|
|
|
aspectRatio: '1/1',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<h1>Welcome</h1>
|
|
|
|
<p>Phanpy is a minimalistic opinionated Mastodon web client.</p>
|
|
|
|
<p class="warning">
|
|
|
|
🚧 This is an early ALPHA project. Many features are missing, many bugs
|
|
|
|
are present. Please report issues as detailed as possible. Thanks 🙏
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<big>
|
|
|
|
<b>
|
|
|
|
<a href="#/login" class="button">
|
|
|
|
Log in
|
|
|
|
</a>
|
|
|
|
</b>
|
|
|
|
</big>
|
|
|
|
</p>
|
|
|
|
</main>
|
|
|
|
);
|
|
|
|
};
|