2018-01-21 05:30:49 +01:00
< HiddenFromSSR >
< FreeTextLayout >
< div class = "not-logged-in-home" >
< div class = "banner" >
2018-03-16 16:42:10 +01:00
< svg aria-hidden = "true" class = "not-logged-in-home-svg" >
2018-01-21 05:30:49 +01:00
< use xlink:href = "#pinafore-logo" / >
< / svg >
< h1 > Pinafore< / h1 >
< / div >
2018-03-07 08:27:36 +01:00
< p > Pinafore is a web client for < ExternalLink href = "https://joinmastodon.org" > Mastodon< / ExternalLink > , designed for speed and simplicity.< / p >
2018-01-09 03:14:21 +01:00
2018-04-09 18:35:58 +02:00
< p > Read the < ExternalLink href = "https://nolanlawson.com/2018/04/09/introducing-pinafore-for-mastodon/" > introductory blog post< / ExternalLink > , or get started by logging in to an instance:< / p >
2018-01-09 03:14:21 +01:00
2018-04-04 03:01:22 +02:00
< p style = "text-align: right;" > < a class = "button primary" href = "/settings/instances/add" > Add instance< / a > < / p >
2018-01-21 05:30:49 +01:00
< / div >
< / FreeTextLayout >
< / HiddenFromSSR >
2018-01-09 03:14:21 +01:00
< style >
2018-01-16 06:58:31 +01:00
.not-logged-in-home {
margin: 10px;
}
2018-01-20 21:35:38 +01:00
.not-logged-in-home .banner {
2018-01-09 03:14:21 +01:00
display: flex;
align-items: center;
2018-01-13 19:53:25 +01:00
margin: 0 0 30px;
2018-01-09 03:14:21 +01:00
}
2018-03-16 16:42:10 +01:00
.not-logged-in-home-svg {
2018-01-09 03:14:21 +01:00
width: 70px;
height: 70px;
fill: royalblue;
display: inline-block;
}
2018-01-20 21:35:38 +01:00
.not-logged-in-home h1 {
2018-01-09 03:14:21 +01:00
color: royalblue;
display: inline-block;
font-size: 3em;
margin: auto 15px;
}
@media (max-width: 767px) {
2018-01-20 21:35:38 +01:00
.not-logged-in-home h1 {
2018-01-09 03:14:21 +01:00
font-size: 2.7em;
}
}
2018-01-13 03:57:50 +01:00
< / style >
< script >
import FreeTextLayout from './FreeTextLayout.html'
2018-01-21 05:30:49 +01:00
import HiddenFromSSR from './HiddenFromSSR.html'
2018-01-29 04:01:51 +01:00
import ExternalLink from './ExternalLink.html'
2018-01-14 05:33:14 +01:00
2018-01-13 03:57:50 +01:00
export default {
components: {
2018-01-21 05:30:49 +01:00
FreeTextLayout,
2018-01-29 04:01:51 +01:00
HiddenFromSSR,
ExternalLink
2018-01-13 03:57:50 +01:00
}
}
< / script >