pinafore/routes/index.html

23 lines
526 B
HTML

<:Head>
<title>Home</title>
</:Head>
<Layout page='home'>
<h1>Pinafore for Mastodon</h1>
<p>Pinafore is a web client for <a href="https://joinmastodon.org">Mastodon</a>, optimized for performance and simplicity.</p>
<p>To get started, <a href="/settings/add-instance">log in to an instance</a>.</p>
<p>Don't have an instance? <a href="https://joinmastodon.org">Join Mastodon!</a></p>
</Layout>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
</script>