This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/src/App.vue

17 lines
517 B
Vue
Raw Normal View History

2019-04-23 21:47:32 +01:00
<template>
2019-05-07 17:39:20 +01:00
<div class="min-h-screen antialiased font-sans bg-gray-200">
2019-04-24 13:18:00 +01:00
<alert-message>
<p>
A clone of <a href="https://platform.sh">Platform.sh</a>s new hosting dashboard.<br class="md:hidden">
Built with <a href="https://vuejs.org">Vue.js</a>
and <a href="https://tailwindcss.com">Tailwind CSS</a>
by <a href="https://www.oliverdavies.uk">Oliver Davies</a>.
</p>
</alert-message>
2019-04-23 21:47:32 +01:00
<router-view/>
</div>
</template>
2019-04-23 23:25:36 +01:00
<style src="./css/app.css"></style>