Add new landing page

This commit is contained in:
Daniel Supernault 2019-03-16 02:46:46 -06:00
parent 25dcb88010
commit 278ecefd5d
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
3 changed files with 330 additions and 0 deletions

10
resources/assets/js/landing.js vendored Normal file
View file

@ -0,0 +1,10 @@
window.Vue = require('vue');
Vue.component(
'landing-page',
require('./components/LandingPage.vue').default
);
new Vue({
el: '#content'
});