diff --git a/index.html b/index.html index 2573495..d8d9e83 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ test-ssg - +
diff --git a/src/assets/css/style.css b/src/assets/css/style.css index 7dbea78..75ffab6 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -138,7 +138,7 @@ button[custom="red"] { } button[custom]:hover, button[custom="red"]:hover { - background-color: #99494c; + background-color: var(--hover-backcolor, #99494c); } button[custom] > .iconfont, button[custom="red"] > .iconfont { @@ -153,22 +153,34 @@ button[custom="red"] > .label { position: relative; cursor: pointer; } +.hover-bottom-animation.center { + --right: auto; + --left: 50%; + --transform: translateX(-50%); +} .hover-bottom-animation::before { content: ''; position: absolute; height: 2px; width: 0; - right: 0; - left: auto; + right: var(--right, 0); + left: var(--left, auto); bottom: 0; + transform: var(--transform); transition: width 0.2s ease-in-out; -webkit-transition: width 0.2s ease-in-out; - background-color: #fff; + background-color: var(--background-color, #fff); } -.hover-bottom-animation:hover::before { +.hover-bottom-animation:not(.center):hover::before { width: 100%; - left: 0; - right: auto; + --left: 0; + --right: auto; +} +.hover-bottom-animation.center:hover::before { + width: 100%; + --right: auto; + --left: 50%; + --transform: translateX(-50%); } .hover-bottom-animation.active:before, .hover-bottom-animation.router-link-exact-active:before { diff --git a/src/assets/css/style.less b/src/assets/css/style.less index 166e1fe..748a395 100644 --- a/src/assets/css/style.less +++ b/src/assets/css/style.less @@ -162,7 +162,7 @@ button[custom="red"] { font-size: 12px; &:hover { - background-color: #99494c; + background-color: var(--hover-backcolor, #99494c); } display: flex; @@ -185,23 +185,37 @@ button[custom="red"] { position: relative; cursor: pointer; + &.center { + --right: auto; + --left: 50%; + --transform: translateX(-50%); + } + &::before { content: ''; position: absolute; height: 2px; width: 0; - right: 0; - left: auto; + right: var(--right, 0); + left: var(--left, auto); bottom: 0; + transform: var(--transform); transition: width 0.2s ease-in-out; -webkit-transition: width 0.2s ease-in-out; - background-color: #fff; + background-color: var(--background-color, #fff); } - &:hover::before { + &:not(.center):hover::before { width: 100%; - left: 0; - right: auto; + --left: 0; + --right: auto; + } + + &.center:hover::before { + width: 100%; + --right: auto; + --left: 50%; + --transform: translateX(-50%); } &.active:before, diff --git a/src/assets/images/contact-us/bg.jpg b/src/assets/images/contact-us/bg.jpg new file mode 100644 index 0000000..feeeb8c Binary files /dev/null and b/src/assets/images/contact-us/bg.jpg differ diff --git a/src/assets/images/media/bg.jpg b/src/assets/images/media/bg.jpg new file mode 100644 index 0000000..bca3fba Binary files /dev/null and b/src/assets/images/media/bg.jpg differ diff --git a/src/directives/custom-animation.js b/src/directives/custom-animation.js index df40262..b7aad0f 100644 --- a/src/directives/custom-animation.js +++ b/src/directives/custom-animation.js @@ -8,6 +8,15 @@ * 参数 * GetRoot: 获取根元素函数-优先级(GetRoot > parent > document) * activeClass: 激活类名-默认值(active) + * duration: 动画时间-默认值(0.5s) + * delay: 延迟时间-默认值(0s) + * easing: 缓动函数-默认值(ease-out) + * transformDuration: 变换时间-默认值 duration + * transformDelay: 变换延迟时间-默认值 delay + * transformEasing: 变换缓动函数-默认值 easing + * opacityDuration: 透明度时间-默认值 duration + * opacityDelay: 透明度延迟时间-默认值 delay + * opacityEasing: 透明度缓动函数-默认值 easing * * 子元素动画 *
@@ -40,6 +49,16 @@ const T = { rotateZ: 'rotate-z', opacity_s: 'opacity-s', opacity: 'opacity', + // 动画属性配置 + duration: 'duration', + delay: 'delay', + easing: 'easing', + transformDuration: 'transform-duration', + transformDelay: 'transform-delay', + transformEasing: 'transform-easing', + opacityDuration: 'opacity-duration', + opacityDelay: 'opacity-delay', + opacityEasing: 'opacity-easing', } const types = Object.values(T) const typesStr = types.map(v => `[${v}]`).join(',') @@ -55,8 +74,22 @@ export default { const { value, modifiers } = binding const { GetRoot,// 获取根元素函数 - activeClass = 'active'// 激活类名 + activeClass = 'active',// 激活类名 + duration = '0.5s',// 动画时间 + delay = '0s',// 延迟时间 + easing = 'ease-out',// 缓动函数 } = value || {} + const transition = { + duration, + delay, + easing, + transformDuration: value?.transformDuration || value?.[T.transformDuration], + transformDelay: value?.transformDelay || value?.[T.transformDelay], + transformEasing: value?.transformEasing || value?.[T.transformEasing], + opacityDuration: value?.opacityDuration || value?.[T.opacityDuration], + opacityDelay: value?.opacityDelay || value?.[T.opacityDelay], + opacityEasing: value?.opacityEasing || value?.[T.opacityEasing], + } const { scroll = false,// 是否监听滚动事件 once = false,// 是否只执行一次 @@ -64,22 +97,28 @@ export default { } = modifiers const root = GetRoot ? GetRoot() : parent ? el.parentElement : document; if (el === root) return; - add(el, root) - els.set(el, { + const config = { root,// 根元素 scroll, once, activeClass, isActive: false, - }) + transition, + } + els.set(el, config) + add(el, root, config) }, beforeUnmount(el, binding) { remove(el) els.delete(el) } }; -function add(el, root = document) { - requestAnimationFrame(() => handleScroll({ target: root })) +function add(el, root = document, config) { + if (config.scroll) { + requestAnimationFrame(() => handleScroll({ target: root })) + } else { + getChildren(el).forEach((child) => setDocumentStyles(el, child, 0)) + } resize.observe(el) if (roots.has(root)) { let obj = roots.get(root) @@ -97,6 +136,9 @@ function add(el, root = document) { if (obj.once && obj.isActive) return;// 只执行一次,且已可见,不执行 obj.isActive = entry.isIntersecting; target.classList.toggle(obj.activeClass, obj.isActive) + getChildren(target).forEach((el) => { + setDocumentStyles(target, el, obj.isActive ? 1 : 0) + }) }) }, { root }) observer.observe(el) @@ -128,8 +170,7 @@ async function handleScroll({ target: root }) { const item = els.get(el) if (!item) return if (!item.scroll) return - const children = Array.from(el.querySelectorAll(typesStr)) - if (Object.values(T).some(v => hasAttr(el, v))) children.push(el) + const children = getChildren(el) if (children.length === 0) return const rootEl = isDocumentRoot(root) const offsetHeight = root === document ? window.innerHeight : rootEl.offsetHeight @@ -139,27 +180,53 @@ async function handleScroll({ target: root }) { const maxHeight = offsetHeight + el.offsetHeight const p = Math.min(1, Math.max(0, elTop_bottom / maxHeight)) children.forEach((item) => { - item.style.transition = 'transform 0.5s ease-out' - - const tX = getCurrentValue(item, T.translateX_s, T.translateX, p) - const tY = getCurrentValue(item, T.translateY_s, T.translateY, p) - const sx = getCurrentValue(item, T.scaleX_s, T.scaleX, p, T.scale_s, T.scale, 1) - const sy = getCurrentValue(item, T.scaleY_s, T.scaleY, p, T.scale_s, T.scale, 1) - const r = getCurrentValue(item, T.rotate_s, T.rotate, p) - const rx = getCurrentValue(item, T.rotateX_s, T.rotateX, p) - const ry = getCurrentValue(item, T.rotateY_s, T.rotateY, p) - const rz = getCurrentValue(item, T.rotateZ_s, T.rotateZ, p) - const transform = `translate(${tX}px, ${tY}px) scale(${sx}, ${sy}) rotate(${r}deg) rotateX(${rx}deg) rotateY(${ry}deg) rotateZ(${rz}deg)` - item.style.transform = transform - if (hasAttr(item, [T.opacity_s, T.opacity])) { - item.style.opacity = getCurrentValue(item, T.opacity_s, T.opacity, p, T.opacity_s, T.opacity, 1) - } + setDocumentStyles(el, item, p) }) }) } +function getChildren(el, oneself = true) { + const children = Array.from(el.querySelectorAll(typesStr)) + if (oneself && Object.values(T).some(v => hasAttr(el, v))) children.push(el) + return children +} +function setDocumentStyles(parent, el, p = 0) { + const item = els.get(parent) + if (!item) return + const t = getAttrs(el, item.transition) + const tDuration = t.duration || t.transformDuration + const tDelay = t.delay || t.transformDelay + const tEasing = t.easing || t.transformEasing + const oDuration = t.duration || t.opacityDuration + const oDelay = t.delay || t.opacityDelay + const oEasing = t.easing || t.opacityEasing + const transitionArr = [ + `transform ${tDuration} ${tDelay} ${tEasing}`, + `opacity ${oDuration} ${oDelay} ${oEasing}`, + ] + el.style.transition = transitionArr.join(', ') + const tX = getCurrentValue(el, T.translateX_s, T.translateX, p) + const tY = getCurrentValue(el, T.translateY_s, T.translateY, p) + const sx = getCurrentValue(el, T.scaleX_s, T.scaleX, p, T.scale_s, T.scale, 1) + const sy = getCurrentValue(el, T.scaleY_s, T.scaleY, p, T.scale_s, T.scale, 1) + const r = getCurrentValue(el, T.rotate_s, T.rotate, p) + const rx = getCurrentValue(el, T.rotateX_s, T.rotateX, p) + const ry = getCurrentValue(el, T.rotateY_s, T.rotateY, p) + const rz = getCurrentValue(el, T.rotateZ_s, T.rotateZ, p) + const transform = `translate(${tX}px, ${tY}px) scale(${sx}, ${sy}) rotate(${r}deg) rotateX(${rx}deg) rotateY(${ry}deg) rotateZ(${rz}deg)` + el.style.transform = transform + if (hasAttr(el, [T.opacity_s, T.opacity])) { + el.style.opacity = getCurrentValue(el, T.opacity_s, T.opacity, p, T.opacity_s, T.opacity, 1) + } +} +function getAttrs(el, attrs = {}) { + const arrs = Object.keys(attrs) + const obj = {} + arrs.forEach((item) => { + obj[item] = el.getAttribute(T[item]) || attrs[item] + }) + return obj +} function getCurrentValue(el, start, end, progress, bStart, bEnd, defaultValue = 0) { - // const startNum = Number(el.getAttribute(start) || el.getAttribute(bStart)) || defaultValue - // const endNum = Number(el.getAttribute(end) || el.getAttribute(bEnd)) || defaultValue const startNum = hasAttr(el, start) ? Number(el.getAttribute(start)) : hasAttr(el, bStart) ? Number(el.getAttribute(bStart)) : defaultValue const endNum = hasAttr(el, end) ? Number(el.getAttribute(end)) : hasAttr(el, bEnd) ? Number(el.getAttribute(bEnd)) : defaultValue return startNum + (endNum - startNum) * progress diff --git a/src/pages/ContactView.vue b/src/pages/ContactView.vue deleted file mode 100644 index 012dc0c..0000000 --- a/src/pages/ContactView.vue +++ /dev/null @@ -1,127 +0,0 @@ - - - diff --git a/src/pages/contact-us/index.vue b/src/pages/contact-us/index.vue new file mode 100644 index 0000000..74b45d9 --- /dev/null +++ b/src/pages/contact-us/index.vue @@ -0,0 +1,147 @@ + + + + diff --git a/src/pages/home/index.vue b/src/pages/home/index.vue index 837f60b..b359425 100644 --- a/src/pages/home/index.vue +++ b/src/pages/home/index.vue @@ -57,8 +57,8 @@ :src="homeAiLogo" alt="Code Create" loading="lazy" - translate-y-s="80" - translate-y="0" + translate-y-s="-20" + translate-y="20" />

+
+ +
+

Media

+
+
+
+ +
+
+ {{ FormatDate(v.date, 'SM D, YYYY') }} + {{ v.text }} +
+
+
+
+
+ + + + diff --git a/src/pages/media/list-en.js b/src/pages/media/list-en.js new file mode 100644 index 0000000..6352f4c --- /dev/null +++ b/src/pages/media/list-en.js @@ -0,0 +1,326 @@ +export default [ + { + "date": 1745942400000, + "text": "Congratulations to Code-Create for being named one of Hong Kong’s Hottest Startups of 2025" + }, + { + "date": 1745078400000, + "text": "AI-Powered Design Curriculum: Pioneering Creativity in Fashion Education" + }, + { + "date": 1744732800000, + "text": "Code-Create x BIFU: Breakthrough in the AI Era" + }, + { + "date": 1744214400000, + "text": "South Korean brand BESFXXK leveraged AiDA to create its 2025 FW ready-to-wear collection." + }, + { + "date": 1744041600000, + "text": "AiDA: Accelerating Fashion Design Efficiency by Over 60%" + }, + { + "date": 1743436800000, + "text": "Ms. Kim Wong Breaks Down How AI Is Reshaping Sustainable Fashion" + }, + { + "date": 1743350400000, + "text": "The AiDA Workshop was successfully held in Shenzhen" + }, + { + "date": 1741708800000, + "text": "AiDA x SFT Fashion AI Award Successfully Finished" + }, + { + "date": 1741276800000, + "text": "Feminine Power: Ms. Kim Wong's Journey in Fashion and AI" + }, + { + "date": 1739980800000, + "text": "Achieving Excellence in Design within an Hour!" + }, + { + "date": 1739894400000, + "text": "Brainstorm with AI!!" + }, + { + "date": 1735574400000, + "text": "New Year 2025!Let's kick off the year with a burst of inspiration and design" + }, + { + "date": 1735488000000, + "text": "Announcing the Finalists for AiDA Fashion AI Award" + }, + { + "date": 1733500800000, + "text": "Code-Create's CEO Kim Wong Honored with Best Paper Award at 2024 International Fashion Conference" + }, + { + "date": 1733500800000, + "text": "【2024 FABI KOREA Conference】:Revolutionizing Fashion Design with AiDA" + }, + { + "date": 1732723200000, + "text": "Hanyang University Meets AiDA: A Fusion of Creativity and Technology" + }, + { + "date": 1731513600000, + "text": "AiDA Workshop" + }, + { + "date": 1731513600000, + "text": "AiDA X SFT AI Fashion Award 2024" + }, + { + "date": 1725379200000, + "text": "Hong Kong’s fashion tech start-up raises funds, eyes mainland, South Korea growth markets" + }, + { + "date": 1721750400000, + "text": "AiDA@Victoria and Albert Museum, London: Fusing Cultural Heritage with Fashion's Future" + }, + { + "date": 1714752000000, + "text": "Code-Create's AiDA Wins Prestigious iF DESIGN AWARD 2024 for Revolutionary Fashion AI Solution!" + }, + { + "date": 1702569600000, + "text": "Revolutionizing the Runway: An Interview with the Minds Behind AiDA and Code-Create" + }, + { + "date": 1702224000000, + "text": "AiDA in \"The State of Fashion 2024\" by The Business of Fashion & McKinsey & Company" + }, + { + "date": 1674057600000, + "text": "What Does The AI Design Hype Mean For Fashion?" + }, + { + "date": 1673193600000, + "text": "Artificial intelligence meets fashion: How AiDA is disrupting design" + }, + { + "date": 1671638400000, + "text": "Artificial Intelligence Times 인공지능으로 패션 패러다임 바꾼다!... 홍콩 '코드 크리에이트', 세계 첫 패션 AI 플랫폼 선보여" + }, + { + "date": 1671638400000, + "text": "Chill Blog Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "AsiaOne Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Hinet Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "HiNet生活志 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "iFeng (凤凰网大风号) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "Intellasia.Net Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "IT News Africa Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "IT News Online Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "MeNews Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "Newswire 코드-크리에이트, 오리지널 디자인용 패션 AI 플랫폼 선봬" + }, + { + "date": 1671552000000, + "text": "SBS 코드-크리에이트, 오리지널 디자인용 패션 AI 플랫폼 선봬" + }, + { + "date": 1671552000000, + "text": "Sohu (搜狐) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "Taiwan News Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Tencent (腾讯企鹅号) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "The Hans India Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "United Daily News Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "Vietnam Insider Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Australia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Hong Kong Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance New Zealand Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Singapore Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Indonesia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Malaysia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Philippines Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Taiwan Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "匯港資訊 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "南洋視界 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "南洋視界 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "台灣經濟日報 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "台灣英文新聞 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "商業焦點 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "奧丁丁新聞 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "媒體拓展 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "愛威信3C科技生活 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "新加坡 Asiaone 新聞網 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "新浪 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "新浪香港 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "新浪香港 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "新頭條 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "經濟通 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "經濟通 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "華富財經 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "觀傳媒 全球首個|AI時裝設計助理系統「AiDA」面市" + }, + { + "date": 1671552000000, + "text": "財經智珠網 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "香港矽谷 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "馬來郵報 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671465600000, + "text": "Finance 730 AiDLab 主辦的「FASHION X AI 時裝匯演」昨在 M+ 舉行" + }, + { + "date": 1671465600000, + "text": "Infocast AiDLab主辦的「FASHIONXAI時裝匯演」昨在M+舉行" + }, + { + "date": 1671465600000, + "text": "Quamnet AiDLab主辦的「FASHIONXAI時裝匯演」昨在M+舉行" + }, + { + "date": 1671465600000, + "text": "紫荊App(科创) “時尚 x 人工智能: 2022-2023” 國際匯展在M+掀起時裝業革命" + }, + { + "date": 1671465600000, + "text": "紫荊雜誌 “時尚 x 人工智能: 2022-2023” 國際匯展在M+掀起時裝業革命" + }, + { + "date": 1671379200000, + "text": "Vogue Hong Kong 專訪 Anteprima 創意總監 Izumi Ogino 與 AiDLab 總監,如何透過 AI 技術打造特色服裝" + }, + { + "date": 1670515200000, + "text": "香港電台 AiDLab黃偉強講人工智能時裝設計" + }, + { + "date": 1669910400000, + "text": "香港電台 【財經新思維】時裝設計與科技嘅結合,會帶來咩嘢效果?" + }, + { + "date": 1669564800000, + "text": "明周Inner AI技術能取替真人嗎?AI時裝設計系統AiDA 與Anteprima聯乘" + } +] \ No newline at end of file diff --git a/src/pages/media/list-zh-cn.js b/src/pages/media/list-zh-cn.js new file mode 100644 index 0000000..7af44ea --- /dev/null +++ b/src/pages/media/list-zh-cn.js @@ -0,0 +1,330 @@ +export default [ + { + "date": 1745942400000, + "text": "恭喜 Code-Create 荣登香港2025年最热门初创企业榜单" + }, + { + "date": 1745078400000, + "text": "AI设计课程:在时尚教育领域开创性地激发创造力" + }, + { + "date": 1744732800000, + "text": "Code-Create x BIFU:AI时代下设计师如何破局" + }, + { + "date": 1744214400000, + "text": "来自韩国品牌BESFXXK利用AiDA制作的2025FW系列成衣" + }, + { + "date": 1744041600000, + "text": "AiDA:让时尚设计效率提升超60%" + }, + { + "date": 1743436800000, + "text": "走进港理课堂:解码AI如何重塑可持续时尚" + }, + { + "date": 1743350400000, + "text": "內地首場AiDA 深圳 Workshop 成功舉辦" + }, + { + "date": 1741708800000, + "text": "AiDA x SFT 时尚AI大赛圆满落幕" + }, + { + "date": 1741276800000, + "text": "不被定义的女性力量——Kim女士的时尚与AI之旅" + }, + { + "date": 1739980800000, + "text": "一小时内的卓越设计实现" + }, + { + "date": 1739894400000, + "text": "与AI来一场头脑风暴" + }, + { + "date": 1736092800000, + "text": "梦想不分年龄!!Code-Create 首席执行官 Kim Wong 在 Henrietta 中学的鼓舞人心演讲" + }, + { + "date": 1735574400000, + "text": "搭上2025的列车!打开新设计的大门" + }, + { + "date": 1735488000000, + "text": "AiDA AI时尚比赛入围选手公布" + }, + { + "date": 1733500800000, + "text": "Code-Create首席执行官王剑虹(Kim Wong)荣获2024年国际时尚大会最佳论文奖" + }, + { + "date": 1733500800000, + "text": "【2024 FABI KOREA】:AiDA引领时尚设计变革" + }, + { + "date": 1732723200000, + "text": "韩国汉阳大师生的AiDA体验日——与未来设计对话" + }, + { + "date": 1731513600000, + "text": "AiDA 工作坊" + }, + { + "date": 1731513600000, + "text": "AiDA X SFT AI Fashion Award 2024" + }, + { + "date": 1725379200000, + "text": "Hong Kong’s fashion tech start-up raises funds, eyes mainland, South Korea growth markets" + }, + { + "date": 1721750400000, + "text": "AiDA@Victoria and Albert Museum, London: Fusing Cultural Heritage with Fashion's Future" + }, + { + "date": 1714752000000, + "text": "Code-Create's AiDA Wins Prestigious iF DESIGN AWARD 2024 for Revolutionary Fashion AI Solution!" + }, + { + "date": 1702569600000, + "text": "Revolutionizing the Runway: An Interview with the Minds Behind AiDA and Code-Create" + }, + { + "date": 1702224000000, + "text": "AiDA in \"The State of Fashion 2024\" by The Business of Fashion & McKinsey & Company" + }, + { + "date": 1674057600000, + "text": "What Does The AI Design Hype Mean For Fashion?" + }, + { + "date": 1673193600000, + "text": "Artificial intelligence meets fashion: How AiDA is disrupting design" + }, + { + "date": 1671638400000, + "text": "Artificial Intelligence Times 인공지능으로 패션 패러다임 바꾼다!... 홍콩 '코드 크리에이트', 세계 첫 패션 AI 플랫폼 선보여" + }, + { + "date": 1671638400000, + "text": "Chill Blog Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "AsiaOne Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Hinet Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "HiNet生活志 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "iFeng (凤凰网大风号) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "Intellasia.Net Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "IT News Africa Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "IT News Online Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "MeNews Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "Newswire 코드-크리에이트, 오리지널 디자인용 패션 AI 플랫폼 선봬" + }, + { + "date": 1671552000000, + "text": "SBS 코드-크리에이트, 오리지널 디자인용 패션 AI 플랫폼 선봬" + }, + { + "date": 1671552000000, + "text": "Sohu (搜狐) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "Taiwan News Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Tencent (腾讯企鹅号) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "The Hans India Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "United Daily News Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "Vietnam Insider Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Australia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Hong Kong Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance New Zealand Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Singapore Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Indonesia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Malaysia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Philippines Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Taiwan Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "匯港資訊 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "南洋視界 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "南洋視界 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "台灣經濟日報 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "台灣英文新聞 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "商業焦點 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "奧丁丁新聞 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "媒體拓展 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "愛威信3C科技生活 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "新加坡 Asiaone 新聞網 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "新浪 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "新浪香港 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "新浪香港 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "新頭條 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "經濟通 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "經濟通 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "華富財經 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "觀傳媒 全球首個|AI時裝設計助理系統「AiDA」面市" + }, + { + "date": 1671552000000, + "text": "財經智珠網 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "香港矽谷 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "馬來郵報 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671465600000, + "text": "Finance 730 AiDLab 主辦的「FASHION X AI 時裝匯演」昨在 M+ 舉行" + }, + { + "date": 1671465600000, + "text": "Infocast AiDLab主辦的「FASHIONXAI時裝匯演」昨在M+舉行" + }, + { + "date": 1671465600000, + "text": "Quamnet AiDLab主辦的「FASHIONXAI時裝匯演」昨在M+舉行" + }, + { + "date": 1671465600000, + "text": "紫荊App(科创) “時尚 x 人工智能: 2022-2023” 國際匯展在M+掀起時裝業革命" + }, + { + "date": 1671465600000, + "text": "紫荊雜誌 “時尚 x 人工智能: 2022-2023” 國際匯展在M+掀起時裝業革命" + }, + { + "date": 1671379200000, + "text": "Vogue Hong Kong 專訪 Anteprima 創意總監 Izumi Ogino 與 AiDLab 總監,如何透過 AI 技術打造特色服裝" + }, + { + "date": 1670515200000, + "text": "香港電台 AiDLab黃偉強講人工智能時裝設計" + }, + { + "date": 1669910400000, + "text": "香港電台 【財經新思維】時裝設計與科技嘅結合,會帶來咩嘢效果?" + }, + { + "date": 1669564800000, + "text": "明周Inner AI技術能取替真人嗎?AI時裝設計系統AiDA 與Anteprima聯乘" + } +] \ No newline at end of file diff --git a/src/pages/media/list-zh-tw.js b/src/pages/media/list-zh-tw.js new file mode 100644 index 0000000..41a4518 --- /dev/null +++ b/src/pages/media/list-zh-tw.js @@ -0,0 +1,334 @@ +export default [ + { + "date": 1745942400000, + "text": "恭喜 Code-Create 榮登香港2025年最熱門初創企業榜單" + }, + { + "date": 1745078400000, + "text": "AI設計課程:在時尚教育領域開創性地激發創造力" + }, + { + "date": 1744732800000, + "text": "Code-Create x BIFU:AI時代下設計師如何破局" + }, + { + "date": 1744214400000, + "text": "來自韓國品牌BESFXXK利用AiDA製作的2025FW系列成衣" + }, + { + "date": 1744041600000, + "text": "AiDA:讓時尚設計效率提升超60%" + }, + { + "date": 1743436800000, + "text": "走進港理課堂:解碼AI如何重塑可持續時尚" + }, + { + "date": 1743350400000, + "text": "內地首場AiDA 深圳 Workshop 成功舉辦" + }, + { + "date": 1741708800000, + "text": "AiDA x SFT 時尚AI大賽圓滿落幕" + }, + { + "date": 1741276800000, + "text": "不被定義的女性力量——Kim女士的時尚與AI之旅" + }, + { + "date": 1739980800000, + "text": "一小時內的卓越設計實現" + }, + { + "date": 1739894400000, + "text": "與AI來一場頭腦風暴" + }, + { + "date": 1736092800000, + "text": "夢想不分年齡!!Code-Create 首席執行官 Kim Wong 在 Henrietta 中學的鼓舞人心演講" + }, + { + "date": 1735488000000, + "text": "AiDA AI時尚比賽入圍選手公布" + }, + { + "date": 1735574400000, + "text": "搭上2025的列車!打開新設計的大門" + }, + { + "date": 1735488000000, + "text": "AiDA AI時尚比賽入圍選手公布" + }, + { + "date": 1733500800000, + "text": "Code-Create首席執行官王劍虹(Kim Wong)榮獲2024年國際時尚大會最佳論文獎" + }, + { + "date": 1733500800000, + "text": "【2024 FABI KOREA】:AiDA引領時尚設計變革" + }, + { + "date": 1732723200000, + "text": "韓國漢陽大師生的AiDA體驗日——與未來設計對話" + }, + { + "date": 1731513600000, + "text": "AiDA 工作坊" + }, + { + "date": 1731513600000, + "text": "AiDA X SFT AI時尚設計比賽2024" + }, + { + "date": 1725379200000, + "text": "政府資助初創公司獲本地創投基金入股逾200萬美元 拓展AI結合時裝設計" + }, + { + "date": 1721750400000, + "text": "AiDA亮相倫敦維多利亞與艾伯特博物館:融合文化傳承與時尚未來" + }, + { + "date": 1714752000000, + "text": "AiDA贏得了2024年iF設計獎,這是一款革命性的時尚AI解決方案" + }, + { + "date": 1702569600000, + "text": "變革T台:AiDA與Code-Create背後的創意人專訪" + }, + { + "date": 1702224000000, + "text": "AiDA榮登由Business of Fashion & McKinsey & Company發佈的\"The State of Fashion 2024\"報告" + }, + { + "date": 1674057600000, + "text": "What Does The AI Design Hype Mean For Fashion?" + }, + { + "date": 1673193600000, + "text": "Artificial intelligence meets fashion: How AiDA is disrupting design" + }, + { + "date": 1671638400000, + "text": "Artificial Intelligence Times 인공지능으로 패션 패러다임 바꾼다!... 홍콩 '코드 크리에이트', 세계 첫 패션 AI 플랫폼 선보여" + }, + { + "date": 1671638400000, + "text": "Chill Blog Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "AsiaOne Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Hinet Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "HiNet生活志 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "iFeng (凤凰网大风号) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "Intellasia.Net Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "IT News Africa Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "IT News Online Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "MeNews Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "Newswire 코드-크리에이트, 오리지널 디자인용 패션 AI 플랫폼 선봬" + }, + { + "date": 1671552000000, + "text": "SBS 코드-크리에이트, 오리지널 디자인용 패션 AI 플랫폼 선봬" + }, + { + "date": 1671552000000, + "text": "Sohu (搜狐) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "Taiwan News Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Tencent (腾讯企鹅号) Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "The Hans India Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "United Daily News Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "Vietnam Insider Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Australia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Hong Kong Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance New Zealand Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo Finance Singapore Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Indonesia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Malaysia Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Philippines Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "Yahoo News Taiwan Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "匯港資訊 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "南洋視界 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "南洋視界 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "台灣經濟日報 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "台灣英文新聞 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "商業焦點 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "奧丁丁新聞 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "媒體拓展 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "愛威信3C科技生活 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "新加坡 Asiaone 新聞網 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "新浪 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA" + }, + { + "date": 1671552000000, + "text": "新浪香港 Code-Create 推出全球首个以设计师原创灵感主导的时尚AI平台AiDA, 由AiDLab研发,带来无限设计方案" + }, + { + "date": 1671552000000, + "text": "新浪香港 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "新頭條 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "經濟通 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671552000000, + "text": "經濟通 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "華富財經 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "觀傳媒 全球首個|AI時裝設計助理系統「AiDA」面市" + }, + { + "date": 1671552000000, + "text": "財經智珠網 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "香港矽谷 Code-Create 推出全球首個以設計師原創靈感主導的時尚AI平台AiDA, 由AiDLab研發,帶來無限設計方案" + }, + { + "date": 1671552000000, + "text": "馬來郵報 Code-Create Introduces AiDA by AiDLab, The World’s First Fashion AI Platform For Limitless Original Designs Based On Designer’s Creative Inspirations" + }, + { + "date": 1671465600000, + "text": "Finance 730 AiDLab 主辦的「FASHION X AI 時裝匯演」昨在 M+ 舉行" + }, + { + "date": 1671465600000, + "text": "Infocast AiDLab主辦的「FASHIONXAI時裝匯演」昨在M+舉行" + }, + { + "date": 1671465600000, + "text": "Quamnet AiDLab主辦的「FASHIONXAI時裝匯演」昨在M+舉行" + }, + { + "date": 1671465600000, + "text": "紫荊App(科创) “時尚 x 人工智能: 2022-2023” 國際匯展在M+掀起時裝業革命" + }, + { + "date": 1671465600000, + "text": "紫荊雜誌 “時尚 x 人工智能: 2022-2023” 國際匯展在M+掀起時裝業革命" + }, + { + "date": 1671379200000, + "text": "Vogue Hong Kong 專訪 Anteprima 創意總監 Izumi Ogino 與 AiDLab 總監,如何透過 AI 技術打造特色服裝" + }, + { + "date": 1670515200000, + "text": "香港電台 AiDLab黃偉強講人工智能時裝設計" + }, + { + "date": 1669910400000, + "text": "香港電台 【財經新思維】時裝設計與科技嘅結合,會帶來咩嘢效果?" + }, + { + "date": 1669564800000, + "text": "明周Inner AI技術能取替真人嗎?AI時裝設計系統AiDA 與Anteprima聯乘" + } +] \ No newline at end of file diff --git a/src/pages/my-account/account-info.vue b/src/pages/my-account/account-info.vue index 043bb31..fefd2cc 100644 --- a/src/pages/my-account/account-info.vue +++ b/src/pages/my-account/account-info.vue @@ -48,7 +48,7 @@ icon: 'icon-address' }, { - path: '/my-account/methods', + path: '/my-account/payment-methods', label: 'Payment methods', icon: 'icon-duidiaojiaohuanduihuan' }, diff --git a/src/pages/my-account/address.vue b/src/pages/my-account/address.vue new file mode 100644 index 0000000..c63cd9a --- /dev/null +++ b/src/pages/my-account/address.vue @@ -0,0 +1,37 @@ + + + + diff --git a/src/pages/my-account/payment-methods.vue b/src/pages/my-account/payment-methods.vue new file mode 100644 index 0000000..f834d08 --- /dev/null +++ b/src/pages/my-account/payment-methods.vue @@ -0,0 +1,28 @@ + + + + diff --git a/src/routes.ts b/src/routes.ts index aa1e013..7dbc4f0 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -1,6 +1,5 @@ import type { RouteRecordRaw } from 'vue-router' import AboutView from './pages/about-us/index.vue' -import ContactView from './pages/ContactView.vue' import HomeView from './pages/home/index.vue' import ProductsView from './pages/ProductsView.vue' import { LANGS } from './lang' @@ -22,10 +21,15 @@ export const routes: RouteRecordRaw[] = [ name: 'products', component: ProductsView }, + { + path: 'media', + name: 'media', + component: () => import('./pages/media/index.vue') + }, { path: 'contact-us', - name: 'contact', - component: ContactView + name: 'contact-us', + component: () => import('./pages/contact-us/index.vue') }, { path: 'aida', @@ -53,6 +57,14 @@ export const routes: RouteRecordRaw[] = [ path: 'subscriptions', component: () => import('./pages/my-account/subscriptions.vue'), }, + { + path: 'address', + component: () => import('./pages/my-account/address.vue'), + }, + { + path: 'payment-methods', + component: () => import('./pages/my-account/payment-methods.vue'), + }, { path: ':pathMatch(.*)*', component: () => import('./pages/my-account/welcome.vue'),