mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-02 07:37:18 +03:00
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
import './welcome.css';
|
|
|
|
import logo from '../assets/logo.svg';
|
|
import useTitle from '../utils/useTitle';
|
|
|
|
function Welcome() {
|
|
useTitle();
|
|
return (
|
|
<main id="welcome" class="box">
|
|
<img
|
|
src={logo}
|
|
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>
|
|
<hr />
|
|
<p>
|
|
<a href="https://github.com/cheeaun/phanpy" target="_blank">
|
|
Built
|
|
</a>{' '}
|
|
by{' '}
|
|
<a href="https://mastodon.social/@cheeaun" target="_blank">
|
|
@cheeaun
|
|
</a>
|
|
.
|
|
</p>
|
|
</main>
|
|
);
|
|
}
|
|
|
|
export default Welcome;
|