diff --git a/src/lang/en.ts b/src/lang/en.ts index b280747..b2df1aa 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -37,7 +37,15 @@ export default { banner1slogan: 'Shaping the future\nof fashion design', banner1desc: `World's first and only designer-led AI system that streamlines ideation from hours to seconds`, banner2slogan: 'Be the game changer,\n subscribe now!', - banner2desc: 'Make the first move to streamline and facilitate your inspiration process' + banner2desc: 'Make the first move to streamline and facilitate your inspiration process', + slogan: 'Revitalise The Fashion Ecosystem', + subSlogan: 'Through Artificial Intelligence (AI)', + aidaDesc: + 'Empowers fashion designers to create a collection with just a few clicks based on their creative inspirations.', + viewMore: 'VIEW MORE', + mixiSlogan: `Drives sales by improving shoppers' experience through precise and fast search.`, + contactSlogan: 'Talk To Us About Your Next Project', + contactUs: 'CONTACT US', }, Mixi: { IntroduceTitle: 'Best-in-class Precise Fashion Attribute and Colour Recognition System', diff --git a/src/lang/zh-cn.ts b/src/lang/zh-cn.ts index d5df815..44477c2 100644 --- a/src/lang/zh-cn.ts +++ b/src/lang/zh-cn.ts @@ -37,7 +37,14 @@ export default { banner1slogan: '塑造时尚设计未来', banner1desc: `世界首创及独有的设计师主导人工智能系统,能够简化构思流程`, banner2slogan: '立即订阅,颠覆传统!', - banner2desc: '踏出第一步,简化和促进你的创作过程' + banner2desc: '踏出第一步,简化和促进你的创作过程', + slogan: '通过人工智能(AI)', + subSlogan: '重塑时尚生态系统', + aidaDesc: '时装设计师只需数下点击,就能按照自己的创意灵感设计出一个时装系列', + viewMore: '查看更多', + mixiSlogan: '精确、快速地检索,改善顾客的购物体验,推动销售量', + contactSlogan: '与我们分享你的创意项目', + contactUs: '联络我们', }, Mixi: { IntroduceTitle: '精准时装属性及颜色辨识系统(Mixi)', diff --git a/src/lang/zh-tw.ts b/src/lang/zh-tw.ts index 9c90efd..6dd4c5b 100644 --- a/src/lang/zh-tw.ts +++ b/src/lang/zh-tw.ts @@ -37,7 +37,14 @@ export default { banner1slogan: '塑造時尚設計未來', banner1desc: `世界首創及獨有的設計師主導人工智能繫統,能夠簡化構思流程`, banner2slogan: '立即訂閱,顛覆傳統!', - banner2desc: '踏出第一步,簡化和促進你的創作過程' + banner2desc: '踏出第一步,簡化和促進你的創作過程', + slogan: '通過人工智能(AI)', + subSlogan: '重塑時裝生態繫統', + aidaDesc: '時裝設計師只需數下點擊,就能按照自己的創意靈感設計出一個時裝系列', + viewMore: '查看更多', + mixiSlogan: '精確、快速地檢索,改善顧客的購物體驗,推動銷售量', + contactSlogan: '與我們分享你的創意項目', + contactUs: '聯絡我們' }, Mixi: { IntroduceTitle: '精準時裝屬性及顏色辨識系統(Mixi)', @@ -144,4 +151,4 @@ export default { MinnaPolamInfo1: 'AiDA除了可以幫助我們襯搭不同的單品,更可以生成不同的顏色,令我們可以快速看到整個造型,所有單品都可以襯搭在一起,可看到不同顏色和圖案的效果。 而且AiDA亦在設計開發階段,通過學習我們的風格和品味,幫助我們加快設計過程。' } -} \ No newline at end of file +} diff --git a/src/pages/home/components/ProductFeature.vue b/src/pages/home/components/ProductFeature.vue index 5eca27e..9bed164 100644 --- a/src/pages/home/components/ProductFeature.vue +++ b/src/pages/home/components/ProductFeature.vue @@ -5,9 +5,9 @@ defineProps<{ name: string title: string - backgroundImage: string + backgroundImage?: string backgroundAlt: string - panelImage: string + panelImage?: string panelAlt: string reversed?: boolean }>(), @@ -51,7 +51,7 @@ translate-y-s="100" translate-y="0" > - View More + {{$t('Home.viewMore')}} @@ -62,7 +62,7 @@ display: flex; align-items: center; gap: clamp(48px, 5.5vw, 76px); - width: 1440px; + max-width: 1440px; min-width: 0; min-height: 690px; margin: 0 auto; diff --git a/src/pages/home/components/ProjectCta.vue b/src/pages/home/components/ProjectCta.vue index 3d33724..dc5a9a1 100644 --- a/src/pages/home/components/ProjectCta.vue +++ b/src/pages/home/components/ProjectCta.vue @@ -1,13 +1,13 @@