phanpy/src/pages/welcome.jsx

36 wiersze
796 B
JavaScript

import './welcome.css';
import useTitle from '../utils/useTitle';
export default () => {
useTitle();
return (
<main id="welcome" class="box">
<img
src="../design/logo-2.svg"
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>
);
};