pinafore/routes/_components/NotLoggedInHome.html

45 lines
969 B
HTML
Raw Normal View History

2018-01-13 03:57:50 +01:00
<FreeTextLayout>
2018-01-11 09:26:35 +01:00
<div class="banner">
2018-01-13 08:24:05 +01:00
<svg aria-hidden="true" class="logo">
<use xlink:href="#pinafore-logo" />
</svg>
2018-01-11 09:26:35 +01:00
<h1>Pinafore</h1>
</div>
<p>Pinafore is a web client for <a href="https://joinmastodon.org">Mastodon</a>, optimized for speed and simplicity.</p>
2018-01-09 03:14:21 +01:00
2018-01-11 09:26:35 +01:00
<p>To get started, <a href="/settings/add-instance">log in to an instance</a>.</p>
2018-01-09 03:14:21 +01:00
2018-01-11 09:26:35 +01:00
<p>Don't have an instance? <a href="https://joinmastodon.org">Join Mastodon!</a></p>
2018-01-13 03:57:50 +01:00
</FreeTextLayout>
2018-01-09 03:14:21 +01:00
<style>
.banner {
display: flex;
align-items: center;
}
svg {
width: 70px;
height: 70px;
fill: royalblue;
display: inline-block;
}
h1 {
color: royalblue;
display: inline-block;
font-size: 3em;
margin: auto 15px;
}
@media (max-width: 767px) {
h1 {
font-size: 2.7em;
}
}
2018-01-13 03:57:50 +01:00
</style>
<script>
import FreeTextLayout from './FreeTextLayout.html'
export default {
components: {
FreeTextLayout
}
}
</script>