25 lines
531 B
HTML
25 lines
531 B
HTML
<:Head>
|
|
<title>About Pinafore</title>
|
|
</:Head>
|
|
|
|
<Layout page='settings'>
|
|
<SettingsLayout page='about'>
|
|
<h1>About Pinafore</h1>
|
|
|
|
<p>Pinafore is open-source software created by Nolan Lawson.</p>
|
|
|
|
<p>Icon thanks to sailboat by Gregor Cresnar from the Noun Project.</p>
|
|
</SettingsLayout>
|
|
</Layout>
|
|
|
|
<script>
|
|
import Layout from '../_components/Layout.html';
|
|
import SettingsLayout from './_components/SettingsLayout.html'
|
|
|
|
export default {
|
|
components: {
|
|
Layout,
|
|
SettingsLayout
|
|
}
|
|
};
|
|
</script> |