diff --git a/quasar.conf.js b/quasar.conf.js
index e148d2f..1f2fb69 100644
--- a/quasar.conf.js
+++ b/quasar.conf.js
@@ -182,31 +182,16 @@ module.exports = function (ctx) {
description: 'Social project in order to connecting people each others (working in progress...)',
display: 'standalone',
orientation: 'portrait',
+ theme_color: '#ffffff',
background_color: '#ffffff',
- theme_color: '#027be3',
icons: [
{
- 'src': 'statics/icons/icon-128x128.png',
- 'sizes': '128x128',
- 'type': 'image/png'
- },
- {
- 'src': 'statics/icons/icon-192x192.png',
+ 'src': 'statics/icons/android-chrome-192x192.png',
'sizes': '192x192',
'type': 'image/png'
},
{
- 'src': 'statics/icons/icon-256x256.png',
- 'sizes': '256x256',
- 'type': 'image/png'
- },
- {
- 'src': 'statics/icons/icon-384x384.png',
- 'sizes': '384x384',
- 'type': 'image/png'
- },
- {
- 'src': 'statics/icons/icon-512x512.png',
+ 'src': 'statics/icons/android-chrome-512x512',
'sizes': '512x512',
'type': 'image/png'
}
diff --git a/src/assets/freeplanet-logo-full.svg b/src/assets/freeplanet-logo-full.svg
deleted file mode 100644
index e7429ac..0000000
--- a/src/assets/freeplanet-logo-full.svg
+++ /dev/null
@@ -1,715 +0,0 @@
-
-
-
-
diff --git a/src/components/logo/logo.scss b/src/components/logo/logo.scss
index 0512e96..afd9e0c 100644
--- a/src/components/logo/logo.scss
+++ b/src/components/logo/logo.scss
@@ -10,7 +10,7 @@
}
#sun {
- animation: around 5s infinite;
+ animation: gravity 5s infinite;
}
@@ -23,26 +23,3 @@
}
}
-
-@keyframes around {
- 0% {
- cx: 20;
- cy: 22;
- }
- 20% {
- cx: 25;
- cy: 24;
- }
- 50% {
- cx: 40;
- cy: 26;
- }
- 80% {
- cx: 55;
- cy: 24;
- }
- 100% {
- cx: 60;
- cy: 22;
- }
-}
diff --git a/src/components/logo/logo.ts b/src/components/logo/logo.ts
index 2afa32d..917bc72 100644
--- a/src/components/logo/logo.ts
+++ b/src/components/logo/logo.ts
@@ -9,8 +9,10 @@ import { TimelineLite, Back } from 'gsap'
})
export default class Logo extends Vue {
- svgclass: string = 'svgclass'
+ logoimg: string = ''
+
created() {
+ this.logoimg = 'statics/' + process.env.LOGO_REG
this.animate()
}
@@ -25,8 +27,4 @@ export default class Logo extends Vue {
}
- public logoimg() {
- return process.env.LOGO_REG
- }
-
}
diff --git a/src/components/logo/logo.vue b/src/components/logo/logo.vue
index fe3f485..931df7d 100644
--- a/src/components/logo/logo.vue
+++ b/src/components/logo/logo.vue
@@ -1,6 +1,6 @@
-
![FreePlanet]()
+
diff --git a/src/router/route-config.ts b/src/router/route-config.ts
index 2c91947..d1aaf7c 100644
--- a/src/router/route-config.ts
+++ b/src/router/route-config.ts
@@ -9,11 +9,6 @@ export const RouteConfig: VueRouteConfig[] = [
path: '/',
meta: { name: 'Home' }
},
- {
- path: '/test',
- component: () => import('@/views/login/test.vue'),
- meta: { name: 'Test' }
- },
{
path: '/signup',
component: () => import('@/views/login/signup/signup.vue'),
diff --git a/src/statics/icons/android-chrome-192x192.png b/src/statics/icons/android-chrome-192x192.png
new file mode 100644
index 0000000..ef8f28f
Binary files /dev/null and b/src/statics/icons/android-chrome-192x192.png differ
diff --git a/src/statics/icons/android-chrome-512x512.png b/src/statics/icons/android-chrome-512x512.png
new file mode 100644
index 0000000..46cdc86
Binary files /dev/null and b/src/statics/icons/android-chrome-512x512.png differ
diff --git a/src/statics/icons/apple-icon-152x152.png b/src/statics/icons/apple-icon-152x152.png
deleted file mode 100644
index c918acd..0000000
Binary files a/src/statics/icons/apple-icon-152x152.png and /dev/null differ
diff --git a/src/statics/icons/apple-touch-icon.png b/src/statics/icons/apple-touch-icon.png
new file mode 100644
index 0000000..5291627
Binary files /dev/null and b/src/statics/icons/apple-touch-icon.png differ
diff --git a/src/statics/icons/favicon-16x16.png b/src/statics/icons/favicon-16x16.png
index 177c86e..f052d7c 100644
Binary files a/src/statics/icons/favicon-16x16.png and b/src/statics/icons/favicon-16x16.png differ
diff --git a/src/statics/icons/favicon-32x32.png b/src/statics/icons/favicon-32x32.png
index b8e6cdf..9855a45 100644
Binary files a/src/statics/icons/favicon-32x32.png and b/src/statics/icons/favicon-32x32.png differ
diff --git a/src/statics/icons/favicon.ico b/src/statics/icons/favicon.ico
new file mode 100644
index 0000000..fd1950b
Binary files /dev/null and b/src/statics/icons/favicon.ico differ
diff --git a/src/statics/icons/icon-128x128.png b/src/statics/icons/icon-128x128.png
deleted file mode 100644
index 590e8ce..0000000
Binary files a/src/statics/icons/icon-128x128.png and /dev/null differ
diff --git a/src/statics/icons/icon-192x192.png b/src/statics/icons/icon-192x192.png
deleted file mode 100644
index 2a9b50b..0000000
Binary files a/src/statics/icons/icon-192x192.png and /dev/null differ
diff --git a/src/statics/icons/icon-256x256.png b/src/statics/icons/icon-256x256.png
deleted file mode 100644
index 8450959..0000000
Binary files a/src/statics/icons/icon-256x256.png and /dev/null differ
diff --git a/src/statics/icons/icon-384x384.png b/src/statics/icons/icon-384x384.png
deleted file mode 100644
index 2d6dd7b..0000000
Binary files a/src/statics/icons/icon-384x384.png and /dev/null differ
diff --git a/src/statics/icons/icon-512x512.png b/src/statics/icons/icon-512x512.png
deleted file mode 100644
index a57354e..0000000
Binary files a/src/statics/icons/icon-512x512.png and /dev/null differ
diff --git a/src/statics/icons/ms-icon-144x144.png b/src/statics/icons/ms-icon-144x144.png
deleted file mode 100644
index b0880e8..0000000
Binary files a/src/statics/icons/ms-icon-144x144.png and /dev/null differ
diff --git a/src/views/login/test.vue b/src/views/login/test.vue
deleted file mode 100644
index 86740b0..0000000
--- a/src/views/login/test.vue
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-