diff --git a/package-lock.json b/package-lock.json index f8ad1e5..9f83357 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7392,6 +7392,11 @@ "minimist": "^1.2.5" } }, + "moment": { + "version": "2.27.0", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.27.0.tgz", + "integrity": "sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ==" + }, "move-concurrently": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/move-concurrently/download/move-concurrently-1.0.1.tgz", @@ -11056,6 +11061,14 @@ } } }, + "vue-moment": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/vue-moment/-/vue-moment-4.1.0.tgz", + "integrity": "sha512-Gzisqpg82ItlrUyiD9d0Kfru+JorW2o4mQOH06lEDZNgxci0tv/fua1Hl0bo4DozDV2JK1r52Atn/8QVCu8qQw==", + "requires": { + "moment": "^2.19.2" + } + }, "vue-router": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.3.tgz", diff --git a/package.json b/package.json index e0f4986..d2be1cb 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "bootstrap-vue": "^2.16.0", "core-js": "^3.6.5", "vue": "^2.6.11", + "vue-moment": "^4.1.0", "vue-router": "^3.4.3" }, "devDependencies": { diff --git a/src/App.vue b/src/App.vue index cb692cf..6675013 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,32 +9,45 @@ - - + + -

+

Sojourner -

-

- Launched into space on December 4th, 1996, Sojourner is the first wheeled vehicle to - rove upon another planet - Mars. + +

+ Launched into space on + + December 4th, 1996, Sojourner is the first wheeled vehicle to rove upon another planet + - Mars.
- It landed on July 4th, 1997 in the Ares Vallis + + It landed on July 4th, 1997 in + the Ares Vallis region. +
+

+

+ Despite it's original mission duration planned to be just 7 days, it stayed active for 83 days + in total. +

+

+ The lander that Sojourner landed on, Pathfinder, used Airbags, paving the way for the + technologies use in future missions, such as Curiosity and Spirit.

- + @@ -49,6 +62,16 @@ @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap'); @import "./scss/_variables.scss"; + .jumbotron p { + @extend .open-sans; + font-size: 1.3em; + } + + .jumbotron h1 { + @extend .exo-2; + font-size: 2.1em; + } + .carousel-caption { bottom: -10px; } @@ -92,6 +115,8 @@ diff --git a/src/main.js b/src/main.js index 9de76b5..bf7ff0d 100644 --- a/src/main.js +++ b/src/main.js @@ -3,9 +3,9 @@ import { BootstrapVue, BootstrapVueIcons } from 'bootstrap-vue'; import Vue from 'vue' import App from './App.vue' import router from './router'; - Vue.use(BootstrapVue); Vue.use(BootstrapVueIcons); +Vue.use(require('vue-moment')); Vue.config.productionTip = false