diff --git a/frontend/assets/README.md b/frontend/assets/README.md
deleted file mode 100644
index 34766f93..00000000
--- a/frontend/assets/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# ASSETS
-
-**This directory is not required, you can delete it if you don't want to use it.**
-
-This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
-
-More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).
diff --git a/frontend/assets/feature1.png b/frontend/assets/feature1.png
new file mode 100644
index 00000000..b4745afb
Binary files /dev/null and b/frontend/assets/feature1.png differ
diff --git a/frontend/assets/feature2.png b/frontend/assets/feature2.png
new file mode 100644
index 00000000..b30f9ce0
Binary files /dev/null and b/frontend/assets/feature2.png differ
diff --git a/frontend/assets/feature3.png b/frontend/assets/feature3.png
new file mode 100644
index 00000000..ea9cf509
Binary files /dev/null and b/frontend/assets/feature3.png differ
diff --git a/frontend/assets/ner_demo.png b/frontend/assets/ner_demo.png
new file mode 100644
index 00000000..311b3bb3
Binary files /dev/null and b/frontend/assets/ner_demo.png differ
diff --git a/frontend/assets/style/app.styl b/frontend/assets/style/app.styl
deleted file mode 100644
index dbb26799..00000000
--- a/frontend/assets/style/app.styl
+++ /dev/null
@@ -1,2 +0,0 @@
-// Import Vuetify styling
-@require '~vuetify/src/stylus/app.styl'
diff --git a/frontend/assets/style/variables.styl b/frontend/assets/style/variables.styl
deleted file mode 100644
index 8a26685a..00000000
--- a/frontend/assets/style/variables.styl
+++ /dev/null
@@ -1 +0,0 @@
-@require '~vuetify/src/stylus/settings/_variables.styl'
diff --git a/frontend/assets/vbanner.jpg b/frontend/assets/vbanner.jpg
new file mode 100644
index 00000000..4a77ca23
Binary files /dev/null and b/frontend/assets/vbanner.jpg differ
diff --git a/frontend/components/organisms/layout/FeatureCards.vue b/frontend/components/organisms/layout/FeatureCards.vue
index 2b2b5f9f..552a11ac 100644
--- a/frontend/components/organisms/layout/FeatureCards.vue
+++ b/frontend/components/organisms/layout/FeatureCards.vue
@@ -23,7 +23,7 @@
md4
>
@@ -47,17 +47,17 @@ export default {
return {
featureCards: [
{
- imageSrc: '/images/feature3.png',
+ imageSrc: 'feature3.png',
title: this.$t('home.featuresTitle1'),
text: this.$t('home.featuresText1')
},
{
- imageSrc: '/images/feature2.png',
+ imageSrc: 'feature2.png',
title: this.$t('home.featuresTitle2'),
text: this.$t('home.featuresText2')
},
{
- imageSrc: '/images/feature1.png',
+ imageSrc: 'feature1.png',
title: this.$t('home.featuresTitle3'),
text: this.$t('home.featuresText3')
}
diff --git a/frontend/components/organisms/layout/TheBottomBanner.vue b/frontend/components/organisms/layout/TheBottomBanner.vue
index 0c498178..139317c3 100644
--- a/frontend/components/organisms/layout/TheBottomBanner.vue
+++ b/frontend/components/organisms/layout/TheBottomBanner.vue
@@ -1,7 +1,7 @@
@@ -17,7 +17,7 @@
md7
>
diff --git a/frontend/nuxt.config.js b/frontend/nuxt.config.js
index 348405e8..471390b2 100644
--- a/frontend/nuxt.config.js
+++ b/frontend/nuxt.config.js
@@ -124,6 +124,7 @@ export default {
/*
** You can extend webpack config here
*/
+ publicPath: '/static/_nuxt/',
extend(config, ctx) {
config.module.rules.push({
test: /\.(txt|csv|conll|jsonl)$/i,