diff --git a/src/pages/home/components/ProductFeature.vue b/src/pages/home/components/ProductFeature.vue index f72545f..13aef19 100644 --- a/src/pages/home/components/ProductFeature.vue +++ b/src/pages/home/components/ProductFeature.vue @@ -10,6 +10,7 @@ panelImage?: string panelAlt: string reversed?: boolean + to: string }>(), { reversed: false @@ -47,7 +48,7 @@

{{ title }}

diff --git a/src/pages/home/components/ProjectCta.vue b/src/pages/home/components/ProjectCta.vue index 5d19821..4f436e1 100644 --- a/src/pages/home/components/ProjectCta.vue +++ b/src/pages/home/components/ProjectCta.vue @@ -6,7 +6,7 @@

{{ $t('Home.contactSlogan') }}

- + {{ $t('Home.contactUs') }}
diff --git a/src/pages/home/index.vue b/src/pages/home/index.vue index 4e73784..5421e1a 100644 --- a/src/pages/home/index.vue +++ b/src/pages/home/index.vue @@ -22,7 +22,8 @@ backgroundAlt: 'Fashion design sketches on paper', panelImage: `${IMAGE_BASE_URL}/wp-content/uploads/2024/01/new-layout-1.png`, panelAlt: 'AiDA design workspace preview', - reversed: false + reversed: false, + to:'/aida' }, { name: 'Mixi', @@ -31,7 +32,8 @@ backgroundAlt: 'Layered fabric texture', panelImage: `${IMAGE_BASE_URL}/wp-content/uploads/2022/11/mixi_intro_01_panel.png`, panelAlt: 'Mixi visual search interface preview', - reversed: true + reversed: true, + to:'/mixi' } ] }) @@ -87,6 +89,7 @@ :key="feature.name" :name="feature.name" :title="feature.title" + :to="feature.to" :background-image="feature.backgroundImage" :background-alt="feature.backgroundAlt" :panel-image="feature.panelImage"