diff --git a/src/components/Banner.vue b/src/components/Banner.vue index 345fc9a..29edf21 100755 --- a/src/components/Banner.vue +++ b/src/components/Banner.vue @@ -53,10 +53,6 @@ export default defineComponent({ diff --git a/src/components/PageTitle.vue b/src/components/PageTitle.vue deleted file mode 100755 index 99a716f..0000000 --- a/src/components/PageTitle.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/src/components/PresentationAbout.vue b/src/components/PresentationAbout.vue index f748070..ffc8ef0 100755 --- a/src/components/PresentationAbout.vue +++ b/src/components/PresentationAbout.vue @@ -4,7 +4,7 @@ A picture of myself
-
{{ $t('about.banner.hello') }} Arthur DANJOU 👋.

+
{{ $t('about.banner.hello') }} Arthur DANJOU 👋.

{{ $t('about.banner.1')}}


{{ $t('about.banner.2') }}


{{ $t('about.banner.3') }}


diff --git a/src/components/ServicePart.vue b/src/components/ServicePart.vue index 521f98f..65ebf2d 100644 --- a/src/components/ServicePart.vue +++ b/src/components/ServicePart.vue @@ -4,7 +4,7 @@
-

+

{{ $t(title) }}

diff --git a/src/components/SideMenu.vue b/src/components/SideMenu.vue index 079d6b6..ebad882 100644 --- a/src/components/SideMenu.vue +++ b/src/components/SideMenu.vue @@ -142,11 +142,11 @@ export default defineComponent({ @apply duration-300 border-b-2 border-transparent; &:hover { - @apply border-indigo-600; + @apply border-red-500 dark:border-amber-400 } } .link-active a { - @apply text-indigo-600; + @apply text-red-500 dark:text-amber-400 } diff --git a/src/layouts/error.vue b/src/layouts/error.vue index a01ac63..d4e6b35 100755 --- a/src/layouts/error.vue +++ b/src/layouts/error.vue @@ -27,7 +27,7 @@
-
+
{{ $t('error.back') }}
diff --git a/src/pages/about.vue b/src/pages/about.vue index 19e5c4b..931432e 100755 --- a/src/pages/about.vue +++ b/src/pages/about.vue @@ -7,7 +7,7 @@ -
+
{{ $t('about.cv') }}
diff --git a/src/pages/newsletter.vue b/src/pages/newsletter.vue index 2da4568..fc39442 100644 --- a/src/pages/newsletter.vue +++ b/src/pages/newsletter.vue @@ -5,7 +5,7 @@

{{ $t('newsletter.description') }}

-
+

{{ $t('newsletter.title') }}

{{ $t('newsletter.subtitle') }}

diff --git a/src/pages/services.vue b/src/pages/services.vue index 5604901..ed15390 100644 --- a/src/pages/services.vue +++ b/src/pages/services.vue @@ -63,7 +63,7 @@
-

+

{{ $t('services.workflow.title') }}

@@ -139,14 +139,14 @@ export default defineComponent({ diff --git a/windi.config.ts b/windi.config.ts index 013f3b6..3cb1f58 100755 --- a/windi.config.ts +++ b/windi.config.ts @@ -1,4 +1,5 @@ import {defineConfig} from "windicss/helpers"; + const colors = require('windicss/colors') module.exports = defineConfig({ @@ -11,7 +12,7 @@ module.exports = defineConfig({ css: [ { a: { - color: theme('colors.indigo.600'), + color: theme('colors.red.500'), transitionDuration: '300ms', cursor: 'pointer', borderBottomColor: theme('colors.gray.200'), @@ -20,7 +21,7 @@ module.exports = defineConfig({ borderBottomStyle: 'solid', textDecoration: 'none', '&:hover': { - borderBottomColor: theme('colors.indigo.600'), + borderBottomColor: theme('colors.red.500'), } } } @@ -34,7 +35,7 @@ module.exports = defineConfig({ color: theme('colors.gray.400'), }, a: { - color: theme('colors.indigo.600'), + color: theme('colors.amber.400'), transitionDuration: '300ms', cursor: 'pointer', borderBottomColor: theme('colors.gray.700'), @@ -42,7 +43,7 @@ module.exports = defineConfig({ borderBottomStyle: 'solid', textDecoration: 'none', '&:hover': { - borderBottomColor: theme('colors.indigo.600'), + borderBottomColor: theme('colors.amber.400'), } }, strong: {