diff --git a/storefront/components/base/footer/index.vue b/storefront/components/base/footer/index.vue index 53c917ea..5f87dbc9 100644 --- a/storefront/components/base/footer/index.vue +++ b/storefront/components/base/footer/index.vue @@ -8,7 +8,7 @@ format="webp" width="150px" densities="x1" - src="/images/evibes-big-simple-white.png" + src="/images/schon-big.png" alt="logo" loading="lazy" class="header__logo" diff --git a/storefront/components/base/header/index.vue b/storefront/components/base/header/index.vue index edb9a223..a1bdd810 100644 --- a/storefront/components/base/header/index.vue +++ b/storefront/components/base/header/index.vue @@ -5,7 +5,7 @@ format="webp" width="150px" densities="x1" - src="/images/evibes-big-simple.png" + src="/images/schon-big.png" alt="logo" class="header__logo" /> diff --git a/storefront/components/home/hero.vue b/storefront/components/home/hero.vue index c91f2d1f..b72d42e2 100644 --- a/storefront/components/home/hero.vue +++ b/storefront/components/home/hero.vue @@ -2,7 +2,7 @@
- +
diff --git a/storefront/composables/config/useAppConfig.ts b/storefront/composables/config/useAppConfig.ts index b5b3d2d8..168cc95d 100644 --- a/storefront/composables/config/useAppConfig.ts +++ b/storefront/composables/config/useAppConfig.ts @@ -1,8 +1,8 @@ export const useAppConfig = () => { const runtimeConfig = useRuntimeConfig(); - const APP_DOMAIN: string = runtimeConfig.public.evibesBaseDomain; - const APP_NAME: string = runtimeConfig.public.evibesProjectName; + const APP_DOMAIN: string = runtimeConfig.public.schonBaseDomain; + const APP_NAME: string = runtimeConfig.public.schonProjectName; const APP_NAME_KEY: string = APP_NAME.toLowerCase(); return { diff --git a/storefront/config/i18n.ts b/storefront/config/i18n.ts index 451d4e09..fb8f2ee9 100644 --- a/storefront/config/i18n.ts +++ b/storefront/config/i18n.ts @@ -9,6 +9,6 @@ export const i18nConfig: NuxtI18nOptions = { alwaysRedirect: true, redirectOn: 'root', fallbackLocale: DEFAULT_LOCALE, - cookieKey: 'evibes-locale' + cookieKey: 'schon-locale' } }; \ No newline at end of file diff --git a/storefront/nuxt.config.ts b/storefront/nuxt.config.ts index d2330d68..c38a89ed 100644 --- a/storefront/nuxt.config.ts +++ b/storefront/nuxt.config.ts @@ -22,29 +22,29 @@ export default defineNuxtConfig({ autoImports: true, clients: { default: { - httpEndpoint: `https://api.${process.env.EVIBES_BASE_DOMAIN}/graphql/`, + httpEndpoint: `https://api.${process.env.SCHON_BASE_DOMAIN}/graphql/`, connectToDevTools: true, authType: 'Bearer', - authHeader: 'X-EVIBES-AUTH', + authHeader: 'X-SCHON-AUTH', tokenStorage: 'cookie', - tokenName: `${process.env.EVIBES_PROJECT_NAME?.toLowerCase()}-access`, + tokenName: `${process.env.SCHON_PROJECT_NAME?.toLowerCase()}-access`, } } }, runtimeConfig: { public: { - evibesProjectName: process.env.EVIBES_PROJECT_NAME, - evibesBaseDomain: process.env.EVIBES_BASE_DOMAIN + schonProjectName: process.env.SCHON_PROJECT_NAME, + schonBaseDomain: process.env.SCHON_BASE_DOMAIN }, }, app: { head: { charset: "utf-8", viewport: "width=device-width, initial-scale=1", - title: process.env.EVIBES_PROJECT_NAME, - titleTemplate: `${process.env.EVIBES_PROJECT_NAME} | %s`, + title: process.env.SCHON_PROJECT_NAME, + titleTemplate: `${process.env.SCHON_PROJECT_NAME} | %s`, link: [ - { rel: 'icon', type: 'image/x-icon', href: `https://${process.env.EVIBES_BASE_DOMAIN}/favicon.ico` }, + { rel: 'icon', type: 'image/x-icon', href: `https://${process.env.SCHON_BASE_DOMAIN}/favicon.ico` }, ] }, pageTransition: { @@ -63,7 +63,7 @@ export default defineNuxtConfig({ }, vite: { envDir: '../', - envPrefix: 'EVIBES_', + envPrefix: 'SCHON_', css: { preprocessorOptions: { scss: { @@ -76,7 +76,7 @@ export default defineNuxtConfig({ } }, image: { - domains: [`https://api.${process.env.EVIBES_BASE_DOMAIN}`] + domains: [`https://api.${process.env.SCHON_BASE_DOMAIN}`] }, hooks: { 'pages:extend'(pages) { diff --git a/storefront/plugins/apollo.ts b/storefront/plugins/apollo.ts index 831d6fe5..0f215308 100644 --- a/storefront/plugins/apollo.ts +++ b/storefront/plugins/apollo.ts @@ -23,7 +23,7 @@ export default defineNuxtPlugin((nuxtApp) => { }; if (token.value) { - hdrs['X-EVIBES-AUTH'] = `Bearer ${token.value}`; + hdrs['X-SCHON-AUTH'] = `Bearer ${token.value}`; } return { headers: hdrs }; @@ -36,7 +36,7 @@ export default defineNuxtPlugin((nuxtApp) => { }); const httpLink = createUploadLink({ - uri: `https://api.${runtime.public.evibesBaseDomain}/graphql/` + uri: `https://api.${runtime.public.schonBaseDomain}/graphql/` }); $apollo.defaultClient.setLink(from([ diff --git a/storefront/public/favicon.ico b/storefront/public/favicon.ico index f3ba783b..64dfc9ae 100644 Binary files a/storefront/public/favicon.ico and b/storefront/public/favicon.ico differ diff --git a/storefront/public/images/evibes-big-simple-white.png b/storefront/public/images/evibes-big-simple-white.png deleted file mode 100644 index f33972ae..00000000 Binary files a/storefront/public/images/evibes-big-simple-white.png and /dev/null differ diff --git a/storefront/public/images/evibes-big-simple.png b/storefront/public/images/evibes-big-simple.png deleted file mode 100644 index 682ca927..00000000 Binary files a/storefront/public/images/evibes-big-simple.png and /dev/null differ diff --git a/storefront/public/images/evibes-big.png b/storefront/public/images/evibes-big.png deleted file mode 100644 index 260d9404..00000000 Binary files a/storefront/public/images/evibes-big.png and /dev/null differ diff --git a/storefront/public/images/evibes.svg b/storefront/public/images/evibes.svg deleted file mode 100644 index fbc3d731..00000000 --- a/storefront/public/images/evibes.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - diff --git a/storefront/public/images/homeBg.png b/storefront/public/images/homeBg.png index e24673b8..6eb4a4dc 100644 Binary files a/storefront/public/images/homeBg.png and b/storefront/public/images/homeBg.png differ diff --git a/storefront/public/images/schon-big.png b/storefront/public/images/schon-big.png new file mode 100644 index 00000000..ecf8c1a1 Binary files /dev/null and b/storefront/public/images/schon-big.png differ diff --git a/storefront/public/images/schon.svg b/storefront/public/images/schon.svg new file mode 100644 index 00000000..4fbb31b3 --- /dev/null +++ b/storefront/public/images/schon.svg @@ -0,0 +1,1247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file