diff --git a/frontend/src/App.vue b/frontend/src/App.vue index a5212c6..0a8cbb4 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1,12 +1,19 @@ @@ -24,11 +36,15 @@ export default { body { margin: 0; padding: 0; - background-color: #f8f8f8 !important; } #app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + + background: #7f7fd5; /* fallback for old browsers */ + background: -webkit-linear-gradient(to bottom, #7f7fd5, #86a8e7, #91eae4); /* Chrome 10-25, Safari 5.1-6 */ + background: linear-gradient(to bottom, #7f7fd5, #86a8e7, #91eae4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ + } diff --git a/frontend/src/assets/logo.png b/frontend/src/assets/logo.png index f3d2503..149a0be 100644 Binary files a/frontend/src/assets/logo.png and b/frontend/src/assets/logo.png differ diff --git a/frontend/src/assets/logo.svg b/frontend/src/assets/logo.svg index 145b6d1..22a4ff7 100644 --- a/frontend/src/assets/logo.svg +++ b/frontend/src/assets/logo.svg @@ -1 +1,50 @@ -Artboard 46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/src/components/Footer.vue b/frontend/src/components/Footer.vue new file mode 100644 index 0000000..9ea4461 --- /dev/null +++ b/frontend/src/components/Footer.vue @@ -0,0 +1,27 @@ + + + + + + + + + diff --git a/frontend/src/components/GitHubCorner.vue b/frontend/src/components/GitHubCorner.vue new file mode 100644 index 0000000..434b407 --- /dev/null +++ b/frontend/src/components/GitHubCorner.vue @@ -0,0 +1,57 @@ + + + + + + + + + diff --git a/frontend/src/components/NavBar.vue b/frontend/src/components/NavBar.vue new file mode 100644 index 0000000..f1245dd --- /dev/null +++ b/frontend/src/components/NavBar.vue @@ -0,0 +1,51 @@ + + + + + + + + diff --git a/frontend/src/routes.js b/frontend/src/routes.js index d5b485c..3ee1f8f 100644 --- a/frontend/src/routes.js +++ b/frontend/src/routes.js @@ -1,6 +1,7 @@ import Vue from 'vue' import VueRouter from 'vue-router' import BhavCopy from './views/BhavCopy' +import Landing from './views/Landing' // ensure Router added to middleware Vue.use(VueRouter) @@ -16,6 +17,14 @@ export default new VueRouter({ meta: { title: 'Bhav Copy - Equity' } + }, + { + path: '/', + name: 'landing', + component: Landing, + meta: { + title: 'Bullish - Home' + } } ] }) diff --git a/frontend/src/views/Landing.vue b/frontend/src/views/Landing.vue new file mode 100644 index 0000000..bcefe48 --- /dev/null +++ b/frontend/src/views/Landing.vue @@ -0,0 +1,51 @@ + + + + + + + + +