Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Website')
-rw-r--r--Website/README.md69
-rw-r--r--Website/assets/variables.scss4
-rw-r--r--Website/layouts/default.vue70
-rw-r--r--Website/layouts/error.vue44
-rw-r--r--Website/nuxt.config.js55
-rw-r--r--Website/package.json19
-rw-r--r--Website/pages/donate.vue39
-rw-r--r--Website/pages/faq.vue49
-rw-r--r--Website/pages/index.vue48
-rw-r--r--Website/pages/install.vue59
-rw-r--r--Website/pages/links.vue65
-rw-r--r--Website/pages/pay/yoomoney.vue15
-rw-r--r--Website/raw_assets/abstract.afdesignbin0 -> 24184 bytes
-rw-r--r--Website/static/favicon.icobin0 -> 78446 bytes
-rw-r--r--Website/static/logo.pngbin0 -> 133856 bytes
-rw-r--r--Website/static/ui/abstract.svg1
-rw-r--r--Website/store/README.md10
17 files changed, 547 insertions, 0 deletions
diff --git a/Website/README.md b/Website/README.md
new file mode 100644
index 0000000..645c53f
--- /dev/null
+++ b/Website/README.md
@@ -0,0 +1,69 @@
+# Return-Youtube-Dislike
+
+## Build Setup
+
+```bash
+# install dependencies
+$ npm install
+
+# serve with hot reload at localhost:3000
+$ npm run dev
+
+# build for production and launch server
+$ npm run build
+$ npm run start
+
+# generate static project
+$ npm run generate
+```
+
+For detailed explanation on how things work, check out the [documentation](https://nuxtjs.org).
+
+## Special Directories
+
+You can create the following extra directories, some of which have special behaviors. Only `pages` is required; you can delete them if you don't want to use their functionality.
+
+### `assets`
+
+The assets directory contains your uncompiled assets such as Stylus or Sass files, images, or fonts.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/assets).
+
+### `components`
+
+The components directory contains your Vue.js components. Components make up the different parts of your page and can be reused and imported into your pages, layouts and even other components.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/components).
+
+### `layouts`
+
+Layouts are a great help when you want to change the look and feel of your Nuxt app, whether you want to include a sidebar or have distinct layouts for mobile and desktop.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/layouts).
+
+
+### `pages`
+
+This directory contains your application views and routes. Nuxt will read all the `*.vue` files inside this directory and setup Vue Router automatically.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/get-started/routing).
+
+### `plugins`
+
+The plugins directory contains JavaScript plugins that you want to run before instantiating the root Vue.js Application. This is the place to add Vue plugins and to inject functions or constants. Every time you need to use `Vue.use()`, you should create a file in `plugins/` and add its path to plugins in `nuxt.config.js`.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/plugins).
+
+### `static`
+
+This directory contains your static files. Each file inside this directory is mapped to `/`.
+
+Example: `/static/robots.txt` is mapped as `/robots.txt`.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/static).
+
+### `store`
+
+This directory contains your Vuex store files. Creating a file in this directory automatically activates Vuex.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/store).
diff --git a/Website/assets/variables.scss b/Website/assets/variables.scss
new file mode 100644
index 0000000..f60e609
--- /dev/null
+++ b/Website/assets/variables.scss
@@ -0,0 +1,4 @@
+// Ref: https://github.com/nuxt-community/vuetify-module#customvariables
+//
+// The variables you want to modify
+// $font-size-root: 20px;
diff --git a/Website/layouts/default.vue b/Website/layouts/default.vue
new file mode 100644
index 0000000..504d83e
--- /dev/null
+++ b/Website/layouts/default.vue
@@ -0,0 +1,70 @@
+<template>
+ <v-app id="inspire" dark>
+ <v-app-bar app color="lighten-2" flat>
+
+ <v-tabs centered class="ml-n9" color="primary" router>
+ <v-tab v-for="link in links" :key="link" :to="link.path">
+ {{ link.name }}
+ </v-tab>
+ </v-tabs>
+ </v-app-bar>
+
+ <v-main>
+
+ <v-img src="/ui/abstract.svg" style="position: absolute; top: 0; right: 0; width: 100%; height: 100%;" />
+
+ <nuxt />
+
+
+ </v-main>
+ </v-app>
+</template>
+
+<style>
+html, body {
+ overflow: hidden;
+}
+
+section {
+ height: 90vh;
+ width: 100vw;
+}
+.mainAltButton {
+ margin: 0.25em;
+}
+.center {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+}
+</style>
+
+<script>
+ export default {
+ data: () => ({
+ links: [
+ {
+ name: 'Home',
+ path: '/'
+ },
+ {
+ name: 'Install',
+ path: '/install'
+ },
+ {
+ name: 'FAQ',
+ path: '/faq'
+ },
+ {
+ name: 'Donate',
+ path: '/donate'
+ },
+ {
+ name: 'Links',
+ path: '/links'
+ },
+ ],
+ }),
+ }
+</script> \ No newline at end of file
diff --git a/Website/layouts/error.vue b/Website/layouts/error.vue
new file mode 100644
index 0000000..ae22f7c
--- /dev/null
+++ b/Website/layouts/error.vue
@@ -0,0 +1,44 @@
+<template>
+ <v-app dark>
+ <h1 v-if="error.statusCode === 404">
+ {{ pageNotFound }}
+ </h1>
+ <h1 v-else>
+ {{ otherError }}
+ </h1>
+ <NuxtLink to="/">
+ Home page
+ </NuxtLink>
+ </v-app>
+</template>
+
+<script>
+export default {
+ layout: 'empty',
+ props: {
+ error: {
+ type: Object,
+ default: null
+ }
+ },
+ data () {
+ return {
+ pageNotFound: '404 Not Found',
+ otherError: 'An error occurred'
+ }
+ },
+ head () {
+ const title =
+ this.error.statusCode === 404 ? this.pageNotFound : this.otherError
+ return {
+ title
+ }
+ }
+}
+</script>
+
+<style scoped>
+h1 {
+ font-size: 20px;
+}
+</style>
diff --git a/Website/nuxt.config.js b/Website/nuxt.config.js
new file mode 100644
index 0000000..285e8f5
--- /dev/null
+++ b/Website/nuxt.config.js
@@ -0,0 +1,55 @@
+import colors from 'vuetify/es5/util/colors'
+
+export default {
+ // Global page headers: https://go.nuxtjs.dev/config-head
+ head: {
+ titleTemplate: 'Return Youtube Dislike',
+ title: 'Return Youtube Dislike',
+ htmlAttrs: {
+ lang: 'en'
+ },
+ meta: [
+ { charset: 'utf-8' },
+ { name: 'viewport', content: 'width=device-width, initial-scale=1' },
+
+ { hid: 'description', name: 'description', content: 'An extension that returns dislike statistics to YouTube. For now, it only works if a video had public display of dislikes enabled before YouTube removed dislike stats. ' },
+ { hid: 'og:image', name: 'og:image', content: '/logo.png' },
+ { hid: 'theme-color', name: 'theme-color', content: '#ff0000' }
+ ],
+ link: [
+ { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
+ ]
+ },
+
+ target: 'static',
+ css: [],
+ plugins: [],
+ components: true,
+ buildModules: [
+ '@nuxtjs/vuetify',
+ ],
+ modules: [],
+
+ // Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
+ vuetify: {
+ customVariables: ['~/assets/variables.scss'],
+ theme: {
+ dark: true,
+ themes: {
+ dark: {
+ primary: "#ff4444",
+ accent: colors.grey.darken3,
+ secondary: colors.amber.darken3,
+ info: colors.teal.lighten1,
+ warning: colors.amber.base,
+ error: colors.deepOrange.accent4,
+ success: colors.green.accent3
+ }
+ }
+ }
+ },
+
+
+ build: {}
+
+}
diff --git a/Website/package.json b/Website/package.json
new file mode 100644
index 0000000..396e852
--- /dev/null
+++ b/Website/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "Return-Youtube-Dislike",
+ "version": "1.0.0",
+ "private": true,
+ "scripts": {
+ "dev": "nuxt",
+ "build": "nuxt build",
+ "start": "nuxt start",
+ "generate": "nuxt generate"
+ },
+ "dependencies": {
+ "core-js": "^3.15.1",
+ "nuxt": "^2.15.7",
+ "vuetify": "^2.5.5"
+ },
+ "devDependencies": {
+ "@nuxtjs/vuetify": "^1.12.1"
+ }
+} \ No newline at end of file
diff --git a/Website/pages/donate.vue b/Website/pages/donate.vue
new file mode 100644
index 0000000..6b1b77f
--- /dev/null
+++ b/Website/pages/donate.vue
@@ -0,0 +1,39 @@
+<template>
+ <div>
+
+ <section style="position: relative;">
+
+ <div class="center">
+ <center>
+
+ <h1 style="font-size: 3em; margin-bottom: 0em;">Donate</h1>
+ <p style="color: #999; margin-bottom: 3em;">You can support our efforts to keep the internet free with a donation!</p>
+
+ <v-btn class="mainAltButton" :href="patreonLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-patreon</v-icon>
+ Patreon
+ </v-btn>
+
+ <v-btn class="mainAltButton" :to="yoomoneyLink">
+ <v-icon style="margin-right: 0.5em;">mdi-cash-multiple</v-icon>
+ Yoomoney
+ </v-btn>
+
+ </center>
+ </div>
+
+
+ </section>
+
+ </div>
+</template>
+
+<script>
+ export default {
+ data: () => ({
+ patreonLink: "https://www.patreon.com/returnyoutubedislike",
+ yoomoneyLink: "/pay/yoomoney"
+ }),
+
+ }
+</script> \ No newline at end of file
diff --git a/Website/pages/faq.vue b/Website/pages/faq.vue
new file mode 100644
index 0000000..5b882ea
--- /dev/null
+++ b/Website/pages/faq.vue
@@ -0,0 +1,49 @@
+<template>
+ <div>
+
+ <section style="position: relative;">
+
+
+ <div class="center">
+ <center>
+
+ <h1 style="font-size: 3em; margin-bottom: 0em;">Frequently Asked Questions</h1>
+ <p style="color: #999; margin-bottom: 3em;">Still have questions? Feel free to join our Discord!</p>
+
+ <v-expansion-panels focusable>
+ <v-expansion-panel v-for="(item, i) in items" :key="i" style="width: 50vw; min-width: 300px;">
+ <v-expansion-panel-header v-text="item.question">Loading</v-expansion-panel-header>
+ <v-expansion-panel-content v-html="item.answer" style="text-align: left; padding: 0.5em;">Loading</v-expansion-panel-content>
+ </v-expansion-panel>
+ </v-expansion-panels>
+
+ </center>
+ </div>
+
+
+ </section>
+
+ </div>
+</template>
+
+<script>
+ export default {
+ data: () => ({
+ items: [
+ {
+ question: "Why is it not in chrome store yet?",
+ answer: "Chrome extension appoval process takes some time. As soon as it's available in the store - We'll update the site "
+ },
+ {
+ question: "Is it dangerous?/Is it a virus?",
+ answer: "While there is some trust involved in installing an extension from 3-rd party source - you can see all permissions requested by the extension before installing it. This extension only asks for access to youtube.com page "
+ },
+ {
+ question: "I downvoted a video, and downvotes number didn't change",
+ answer: "Currently we're using YouTube API to get dislikes count. It may take some time for data to be updated. YouTube might freeze dislike counts as well. We're working on a solution for this "
+ },
+ ],
+ }),
+
+ }
+</script> \ No newline at end of file
diff --git a/Website/pages/index.vue b/Website/pages/index.vue
new file mode 100644
index 0000000..eec84cb
--- /dev/null
+++ b/Website/pages/index.vue
@@ -0,0 +1,48 @@
+<template>
+ <div>
+
+ <section style="position: relative;">
+
+
+ <div class="center">
+ <center>
+
+ <h1 style="font-size: 3em; margin-bottom: 0.5em;">Return Youtube Dislike</h1>
+
+ <v-btn :to="installLink" color="primary lighten-1" style="font-size: 1.5em; padding: 1em; margin-bottom: 0.5em;">
+ <v-icon large style="margin-right: 0.5em;">mdi-tray-arrow-down</v-icon>
+ Install
+ </v-btn>
+
+ <br>
+
+ <v-btn class="mainAltButton" :href="githubLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
+ Github
+ </v-btn>
+
+ <v-btn class="mainAltButton" :href="discordLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
+ Our Discord
+ </v-btn>
+
+ </center>
+ </div>
+
+
+ </section>
+
+ </div>
+</template>
+
+<script>
+export default {
+ data() {
+ return {
+ installLink: "/install",
+ githubLink: "https://github.com/Anarios/return-youtube-dislike",
+ discordLink: "https://discord.gg/mYnESY4Md5",
+ }
+ }
+}
+</script> \ No newline at end of file
diff --git a/Website/pages/install.vue b/Website/pages/install.vue
new file mode 100644
index 0000000..5842640
--- /dev/null
+++ b/Website/pages/install.vue
@@ -0,0 +1,59 @@
+<template>
+ <div>
+
+ <section style="position: relative;">
+
+
+ <div class="center">
+ <center>
+
+ <h1 style="font-size: 3em; margin-bottom: 0;">Select Your Platform</h1>
+
+ <div style="color: #999">
+ <p style="margin-bottom: 0;"> This is an <b>ALPHA version!</b> It may be slow. It may be buggy.</p>
+ <p style="margin-bottom: 3em;">Only available for chrome and Firefox now and as a Userscript now, but coming to other platforms soon.</p>
+ </div>
+
+ <v-btn class="mainAltButton" :href="chromeLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-google-chrome</v-icon>
+ Chrome
+ </v-btn>
+
+ <v-btn class="mainAltButton" :href="firefoxLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-firefox</v-icon>
+ Firefox
+ </v-btn>
+
+ <v-btn class="mainAltButton" :href="scriptLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-script-text-outline</v-icon>
+ Userscript (Tampermonkey)
+ </v-btn>
+
+ <h3 style="margin-top: 3em;">Third Party Implementations</h3>
+ <v-btn class="mainAltButton" :href="iosJailbreakLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-apple</v-icon>
+ iOS (Jailbroken)
+ </v-btn>
+
+ </center>
+ </div>
+
+
+ </section>
+
+ </div>
+</template>
+
+<script>
+export default {
+ data() {
+ return {
+ chromeLink: "https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/",
+ firefoxLink: "https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/",
+ scriptLink: "https://github.com/Anarios/return-youtube-dislike/raw/main/Extensions/UserScript/Return%20Youtube%20Dislike.user.js",
+
+ iosJailbreakLink: "https://repo.lillieweeb001.xyz/"
+ }
+ }
+}
+</script> \ No newline at end of file
diff --git a/Website/pages/links.vue b/Website/pages/links.vue
new file mode 100644
index 0000000..133de7a
--- /dev/null
+++ b/Website/pages/links.vue
@@ -0,0 +1,65 @@
+<template>
+ <div>
+
+ <section style="position: relative;">
+
+
+ <div class="center">
+ <center>
+
+ <h1 style="font-size: 3em; margin-bottom: 0;">Project Links</h1>
+
+ <div style="color: #999">
+ <p style="margin-bottom: 1em;">Links to the project and it's developers</p>
+ </div>
+
+ <v-btn class="mainAltButton" :href="githubLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
+ Github
+ </v-btn>
+
+ <v-btn class="mainAltButton" :href="discordLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
+ Discord
+ </v-btn>
+
+ <h1 style="margin-top: 1em;">Contact Me</h1>
+
+ <v-btn class="mainAltButton" :href="emailLink" target="_blank">
+ <v-icon style="margin-right: 0.5em;">mdi-email</v-icon>
+ Email
+ </v-btn>
+
+ </center>
+ </div>
+
+
+ </section>
+
+ <p id="credits">Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990.</p>
+
+ </div>
+</template>
+
+<style scoped>
+#credits {
+ position: absolute;
+ bottom: 0;
+ left: 50%;
+ transform: translate(-50%,0);
+ color: #555;
+}
+</style>
+
+<script>
+export default {
+ data() {
+ return {
+ githubLink: "https://github.com/Anarios/return-youtube-dislike",
+ discordLink: "https://discord.gg/mYnESY4Md5",
+
+ emailLink: "mailto:selivano.d@gmail.com "
+ }
+ }
+}
+</script> \ No newline at end of file
diff --git a/Website/pages/pay/yoomoney.vue b/Website/pages/pay/yoomoney.vue
new file mode 100644
index 0000000..c162034
--- /dev/null
+++ b/Website/pages/pay/yoomoney.vue
@@ -0,0 +1,15 @@
+<template>
+ <div>
+
+ <section style="position: relative;">
+ <div class="center">
+ <center>
+
+ <iframe src="https://yoomoney.ru/quickpay/shop-widget?writer=seller&amp;targets=For%20returnyoutubedislike.com&amp;targets-hint=&amp;default-sum=&amp;button-text=13&amp;hint=&amp;successURL=&amp;quickpay=shop&amp;account=410015901550027&amp;" allowtransparency="true" scrolling="no" width="423" height="222" frameborder="0" />
+
+ </center>
+ </div>
+ </section>
+
+ </div>
+</template> \ No newline at end of file
diff --git a/Website/raw_assets/abstract.afdesign b/Website/raw_assets/abstract.afdesign
new file mode 100644
index 0000000..8a3da25
--- /dev/null
+++ b/Website/raw_assets/abstract.afdesign
Binary files differ
diff --git a/Website/static/favicon.ico b/Website/static/favicon.ico
new file mode 100644
index 0000000..242036d
--- /dev/null
+++ b/Website/static/favicon.ico
Binary files differ
diff --git a/Website/static/logo.png b/Website/static/logo.png
new file mode 100644
index 0000000..2468765
--- /dev/null
+++ b/Website/static/logo.png
Binary files differ
diff --git a/Website/static/ui/abstract.svg b/Website/static/ui/abstract.svg
new file mode 100644
index 0000000..326744c
--- /dev/null
+++ b/Website/static/ui/abstract.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 1920 1080" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><path d="M3098.2,648.023c-547.817,-67.245 -984.192,-310.19 -1296.6,-748.589l-7.548,13.073c316.01,439.548 753.34,680.685 1296.6,748.589l7.547,-13.073Z" style="fill:url(#_Linear1);"/><path d="M3026.72,639.089c-547.817,-67.245 -984.192,-310.19 -1296.6,-748.589l-7.548,13.073c316.01,439.548 753.34,680.685 1296.6,748.589l7.547,-13.073Z" style="fill:url(#_Linear2);"/><path d="M2955.25,630.155c-547.817,-67.245 -984.192,-310.19 -1296.6,-748.59l-7.547,13.073c316.009,439.549 753.339,680.686 1296.6,748.59l7.547,-13.073Z" style="fill:url(#_Linear3);"/><path d="M2883.77,621.221c-547.817,-67.245 -984.192,-310.19 -1296.6,-748.59l-7.547,13.073c316.009,439.549 753.339,680.686 1296.6,748.59l7.547,-13.073Z" style="fill:url(#_Linear4);"/><path d="M2812.3,612.287c-547.817,-67.246 -984.193,-310.191 -1296.6,-748.59l-7.547,13.073c316.009,439.548 753.339,680.685 1296.6,748.589l7.548,-13.072Z" style="fill:url(#_Linear5);"/><path d="M2740.83,603.352c-547.817,-67.245 -984.193,-310.19 -1296.6,-748.589l-7.547,13.073c316.009,439.548 753.34,680.685 1296.6,748.589l7.548,-13.073Z" style="fill:url(#_Linear6);"/><path d="M2669.35,594.418c-547.817,-67.245 -984.192,-310.19 -1296.6,-748.59l-7.547,13.073c316.009,439.549 753.34,680.686 1296.6,748.59l7.548,-13.073Z" style="fill:url(#_Linear7);"/><path d="M2597.88,585.484c-547.817,-67.245 -984.192,-310.19 -1296.6,-748.59l-7.548,13.073c316.009,439.549 753.34,680.686 1296.6,748.59l7.548,-13.073Z" style="fill:url(#_Linear8);"/><path d="M2526.4,576.55c-547.817,-67.246 -984.192,-310.19 -1296.6,-748.59l-7.548,13.073c316.009,439.548 753.34,680.685 1296.6,748.589l7.548,-13.072Z" style="fill:url(#_Linear9);"/><path d="M2454.93,567.615c-547.817,-67.245 -984.192,-310.19 -1296.6,-748.589l-7.548,13.073c316.01,439.548 753.34,680.685 1296.6,748.589l7.548,-13.073Z" style="fill:url(#_Linear10);"/><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1801.23,-94.44)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1729.76,-103.374)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear3" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1658.28,-112.308)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear4" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1586.81,-121.243)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear5" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1515.34,-130.177)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear6" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1443.86,-139.111)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear7" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1372.39,-148.045)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear8" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1300.91,-156.98)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear9" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1229.44,-165.914)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient><linearGradient id="_Linear10" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1291.84,745.845,-745.845,1291.84,1157.97,-174.848)"><stop offset="0" style="stop-color:#c40c0c;stop-opacity:1"/><stop offset="1" style="stop-color:#663737;stop-opacity:1"/></linearGradient></defs></svg> \ No newline at end of file
diff --git a/Website/store/README.md b/Website/store/README.md
new file mode 100644
index 0000000..1972d27
--- /dev/null
+++ b/Website/store/README.md
@@ -0,0 +1,10 @@
+# STORE
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains your Vuex Store files.
+Vuex Store option is implemented in the Nuxt.js framework.
+
+Creating a file in this directory automatically activates the option in the framework.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).