diff --git a/.eslintrc.js b/.eslintrc.js index c0eafe79..f8a2f0f5 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,7 +10,8 @@ module.exports = { rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', - 'import/extensions': 'off' + 'import/extensions': 'off', + 'max-len': ['error', { code: 120, ignoreUrls: true }], }, parserOptions: { parser: 'babel-eslint', diff --git a/public/favicon.ico b/public/favicon.ico index d4440acf..faffe13d 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html index bc01bec2..a7375d79 100644 --- a/public/index.html +++ b/public/index.html @@ -1,19 +1,22 @@ - - - - - - Almanac - - - - - -
- - + + + + + + + CSESoc + + + + + + +
+ + + diff --git a/src/components/NavGrid.vue b/src/components/NavGrid.vue new file mode 100644 index 00000000..79ea6247 --- /dev/null +++ b/src/components/NavGrid.vue @@ -0,0 +1,37 @@ + + + + + + diff --git a/src/views/Home.vue b/src/views/Home.vue index 6c423460..e996ef42 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,18 +1,29 @@