diff --git a/package-lock.json b/package-lock.json index 43b38cc..f045ca3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1034,6 +1034,11 @@ "to-fast-properties": "^2.0.0" } }, + "@fortawesome/fontawesome-free": { + "version": "5.15.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.1.tgz", + "integrity": "sha512-OEdH7SyC1suTdhBGW91/zBfR6qaIhThbcN8PUXtXilY4GYnSBbVqOntdHbC1vXwsDnX0Qix2m2+DSU1J51ybOQ==" + }, "@fullhuman/postcss-purgecss": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@fullhuman/postcss-purgecss/-/postcss-purgecss-3.0.0.tgz", @@ -12069,6 +12074,11 @@ "neo-async": "^2.6.0" } }, + "three": { + "version": "0.123.0", + "resolved": "https://registry.npmjs.org/three/-/three-0.123.0.tgz", + "integrity": "sha512-KNnx/IbilvoHRkxOtL0ouozoDoElyuvAXhFB21RK7F5IPWSmqyFelICK6x3hJerLNSlAdHxR0hkuvMMhH9pqXg==" + }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", diff --git a/package.json b/package.json index 9f32ee2..da1b9be 100644 --- a/package.json +++ b/package.json @@ -8,10 +8,12 @@ "lint": "vue-cli-service lint" }, "dependencies": { + "@fortawesome/fontawesome-free": "^5.15.1", "autoprefixer": "^9.8.6", "core-js": "^3.6.5", "postcss": "^7.0.35", "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1", + "three": "^0.123.0", "vue": "^3.0.0" }, "devDependencies": { diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index df36fcf..0000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000..a1e6583 Binary files /dev/null and b/public/favicon.png differ diff --git a/public/index.html b/public/index.html index b046b91..64d3394 100644 --- a/public/index.html +++ b/public/index.html @@ -4,7 +4,7 @@ - + Minecraft Armorstand diff --git a/src/App.vue b/src/App.vue index 026b09c..2d2b509 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,9 +1,50 @@ diff --git a/src/components/Card.vue b/src/components/Card.vue new file mode 100644 index 0000000..9e40aa1 --- /dev/null +++ b/src/components/Card.vue @@ -0,0 +1,5 @@ + diff --git a/src/main.js b/src/main.js index e85a1e3..a45000b 100644 --- a/src/main.js +++ b/src/main.js @@ -1,5 +1,6 @@ import { createApp } from "vue"; import App from "./App.vue"; import "./assets/tailwind.css"; +import "../node_modules/@fortawesome/fontawesome-free/css/all.css"; createApp(App).mount("#app"); diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..042d3db --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,8 @@ +module.exports = { + purge: [ + "./src/**/*.vue", + ], + theme: {}, + variants: {}, + plugins: [], + } diff --git a/vue.config.js b/vue.config.js index 38d1f1d..0a4935e 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,5 +1,5 @@ module.exports = { publicPath: process.env.NODE_ENV === 'production' - ? '/test/' + ? '/Minecraft-ArmorStand/' : '/' } \ No newline at end of file