refactor: new project structure

This commit is contained in:
Łukasz Holeczek
2018-03-05 15:35:14 +01:00
parent 0347970e65
commit 7dcd6bff72
273 changed files with 102 additions and 5945 deletions
+32
View File
@@ -0,0 +1,32 @@
<template>
<div class="app flex-row align-items-center">
<div class="container">
<b-row class="justify-content-center">
<b-col md="6">
<div class="clearfix">
<h1 class="float-left display-3 mr-4">500</h1>
<h4 class="pt-3">Houston, we have a problem!</h4>
<p class="text-muted">The page you are looking for is temporarily unavailable.</p>
</div>
<b-input-group>
<b-input-group-prepend>
<b-input-group-text>
<i class="fa fa-search"></i>
</b-input-group-text>
</b-input-group-prepend>
<input id="prependedInput" class="form-control" size="16" type="text" placeholder="What are you looking for?">
<b-input-group-append>
<b-button variant="info">Search</b-button>
</b-input-group-append>
</b-input-group>
</b-col>
</b-row>
</div>
</div>
</template>
<script>
export default {
name: 'Page500'
}
</script>