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';
|
|
|
|
|
2022-12-16 08:27:04 +03:00
|
|
|
function Welcome() {
|
2022-12-10 12:14:48 +03:00
|
|
|
useTitle();
|
|
|
|
return (
|
2022-12-19 19:16:45 +03:00
|
|
|
<main id="welcome">
|
|
|
|
<h1>
|
|
|
|
<img
|
|
|
|
src={logo}
|
|
|
|
alt=""
|
|
|
|
width="24"
|
|
|
|
height="24"
|
|
|
|
style={{
|
|
|
|
aspectRatio: '1/1',
|
|
|
|
}}
|
|
|
|
/>{' '}
|
|
|
|
Phanpy
|
|
|
|
</h1>
|
|
|
|
<h2>
|
|
|
|
Trunk-tastic
|
|
|
|
<br />
|
|
|
|
Mastodon Experience
|
|
|
|
</h2>
|
|
|
|
<p>A minimalistic opinionated Mastodon web client.</p>
|
2022-12-10 12:14:48 +03:00
|
|
|
<p>
|
|
|
|
<big>
|
|
|
|
<b>
|
|
|
|
<a href="#/login" class="button">
|
|
|
|
Log in
|
|
|
|
</a>
|
|
|
|
</b>
|
|
|
|
</big>
|
|
|
|
</p>
|
2022-12-10 15:47:34 +03:00
|
|
|
<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>
|
2022-12-10 12:14:48 +03:00
|
|
|
</main>
|
|
|
|
);
|
2022-12-16 08:27:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Welcome;
|