mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-21 21:05:04 +03:00
52 lines
1,007 B
JavaScript
52 lines
1,007 B
JavaScript
import './welcome.css';
|
|
|
|
import logo from '../assets/logo.svg';
|
|
import useTitle from '../utils/useTitle';
|
|
|
|
function Welcome() {
|
|
useTitle();
|
|
return (
|
|
<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>
|
|
<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;
|