Compare commits
14 Commits
e9a909b1db
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6956631072 | ||
|
|
9533839f04 | ||
|
|
a9d606fb72 | ||
|
|
c96cf28f42 | ||
|
|
e01348732e | ||
|
|
c277a8aa58 | ||
|
|
a572e0c674 | ||
|
|
681c3dc9db | ||
|
|
28cb492aca | ||
|
|
548193a64e | ||
|
|
8ad8030f47 | ||
|
|
8cf3a2177c | ||
|
|
ddd61ff22f | ||
|
|
a6ab3d9402 |
@@ -5,7 +5,7 @@
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>test-ssg</title>
|
||||
<link rel="stylesheet" href="https://at.alicdn.com/t/c/font_4403230_hjri04euw1w.css" />
|
||||
<link rel="stylesheet" href="https://at.alicdn.com/t/c/font_4403230_5ucv7qhbwg9.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
||||
|
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 104 KiB |
|
Before Width: | Height: | Size: 411 KiB After Width: | Height: | Size: 411 KiB |
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 67 KiB |
82
src/components/email-box.vue
Normal file
82
src/components/email-box.vue
Normal file
@@ -0,0 +1,82 @@
|
||||
<template>
|
||||
<div class="email-box">
|
||||
<h3 class="title">{{ title }}</h3>
|
||||
<div class="tip">{{ tip }}</div>
|
||||
<input
|
||||
v-model="email"
|
||||
@keydown.enter.prevent="submit"
|
||||
type="email"
|
||||
:placeholder="$t('EmailAddress')"
|
||||
/>
|
||||
<div v-show="error" class="error">{{ error }}</div>
|
||||
<button custom @click="submit">{{ $t('Submit') }}</button>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue'
|
||||
const emit = defineEmits(['submit'])
|
||||
const props = defineProps({
|
||||
title: { type: String },
|
||||
tip: { type: String }
|
||||
})
|
||||
const email = ref('')
|
||||
const error = ref('')
|
||||
const submit = () => {
|
||||
if (!validateEmail(email.value)) return
|
||||
emit('submit', email.value)
|
||||
}
|
||||
// 验证邮箱
|
||||
const validateEmail = (email: string) => {
|
||||
if (email === '') {
|
||||
error.value = 'Please fill out this field.'
|
||||
return false
|
||||
} else if (!/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/.test(email)) {
|
||||
error.value = 'Please enter a valid email address.'
|
||||
return false
|
||||
}
|
||||
error.value = ''
|
||||
return true
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
.email-box {
|
||||
width: 100%;
|
||||
padding: 80px;
|
||||
margin: 0 auto;
|
||||
background-color: #fff;
|
||||
box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
|
||||
border-radius: 40px;
|
||||
> .title {
|
||||
font-size: 40px;
|
||||
color: #222;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
> .tip {
|
||||
color: #4d4d4d;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
> input {
|
||||
width: 100%;
|
||||
border-radius: 40px;
|
||||
height: 40px;
|
||||
padding: 0 20px;
|
||||
border: 1px solid #e1e1e1;
|
||||
outline: none;
|
||||
color: #222;
|
||||
}
|
||||
> .error {
|
||||
font-size: 14px;
|
||||
color: #dc3232;
|
||||
}
|
||||
> button {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
border-radius: 50px;
|
||||
height: 50px;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
--hover-backcolor: #000;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -204,18 +204,18 @@ function setDocumentStyles(parent, el, p = 0) {
|
||||
`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)`
|
||||
const { num: tX, unit: tXUnit } = getCurrentValue(el, T.translateX_s, T.translateX, p)
|
||||
const { num: tY, unit: tYUnit } = getCurrentValue(el, T.translateY_s, T.translateY, p)
|
||||
const { num: sx } = getCurrentValue(el, T.scaleX_s, T.scaleX, p, T.scale_s, T.scale, 1)
|
||||
const { num: sy } = getCurrentValue(el, T.scaleY_s, T.scaleY, p, T.scale_s, T.scale, 1)
|
||||
const { num: r } = getCurrentValue(el, T.rotate_s, T.rotate, p)
|
||||
const { num: rx } = getCurrentValue(el, T.rotateX_s, T.rotateX, p)
|
||||
const { num: ry } = getCurrentValue(el, T.rotateY_s, T.rotateY, p)
|
||||
const { num: rz } = getCurrentValue(el, T.rotateZ_s, T.rotateZ, p)
|
||||
const transform = `translate(${tX}${tXUnit || 'px'}, ${tY}${tYUnit || '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)
|
||||
el.style.opacity = getCurrentValue(el, T.opacity_s, T.opacity, p, T.opacity_s, T.opacity, 1).num
|
||||
}
|
||||
}
|
||||
function getAttrs(el, attrs = {}) {
|
||||
@@ -227,9 +227,16 @@ function getAttrs(el, attrs = {}) {
|
||||
return obj
|
||||
}
|
||||
function getCurrentValue(el, start, end, progress, bStart, bEnd, defaultValue = 0) {
|
||||
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
|
||||
const startStr = hasAttr(el, start) ? el.getAttribute(start) : hasAttr(el, bStart) ? el.getAttribute(bStart) : String(defaultValue)
|
||||
const endStr = hasAttr(el, end) ? el.getAttribute(end) : hasAttr(el, bEnd) ? el.getAttribute(bEnd) : String(defaultValue)
|
||||
const startNum = parseInt(startStr)
|
||||
const endNum = parseInt(endStr)
|
||||
const starUnit = startStr.match(/(px|deg|%|rem|em|vh|vw|pt|pc|mm|cm|in)$/i)?.[1] || ''
|
||||
const endUnit = endStr.match(/(px|deg|%|rem|em|vh|vw|pt|pc|mm|cm|in)$/i)?.[1] || ''
|
||||
return {
|
||||
num: startNum + (endNum - startNum) * progress,
|
||||
unit: starUnit || endUnit
|
||||
}
|
||||
}
|
||||
function hasAttr(el, attr) {
|
||||
if (Array.isArray(attr)) {
|
||||
|
||||
@@ -25,4 +25,9 @@ export default {
|
||||
PageNotFound: 'Page not found',
|
||||
PageNotFoundTitle: "That Page Can't Be Found",
|
||||
PageNotFoundDesc: "It looks like nothing was found at this location.",
|
||||
Contact: 'Contact',
|
||||
GetInTouch: 'Get In Touch',
|
||||
StayUpToDate: "Stay up to date with our e-newsletter",
|
||||
EmailAddress: 'Email Address',
|
||||
Submit: 'Submit',
|
||||
}
|
||||
@@ -25,4 +25,9 @@ export default {
|
||||
PageNotFound: '页面不存在',
|
||||
PageNotFoundTitle: '该页面不存在',
|
||||
PageNotFoundDesc: '这里似乎没有任何发现。',
|
||||
Contact: '联络方法',
|
||||
GetInTouch: '联系我们',
|
||||
StayUpToDate: '通过我们的电子通讯掌握最新动态',
|
||||
EmailAddress: '电邮地址',
|
||||
Submit: '提交',
|
||||
}
|
||||
@@ -25,4 +25,9 @@ export default {
|
||||
PageNotFound: '頁面不存在',
|
||||
PageNotFoundTitle: '該頁面不存在',
|
||||
PageNotFoundDesc: '這裡似乎沒有任何發現。',
|
||||
Contact: '聯絡方法',
|
||||
GetInTouch: '保持聯繫',
|
||||
StayUpToDate: '通過我們的電子通訊掌握最新動態',
|
||||
EmailAddress: '電郵地址',
|
||||
Submit: '提交',
|
||||
}
|
||||
@@ -2,50 +2,26 @@
|
||||
<div class="contact-us">
|
||||
<img class="bg" src="@/assets/images/contact-us/bg.jpg" alt="" />
|
||||
<section class="header">
|
||||
<h1 v-custom-animation.once duration="1s" translate-y-s="-100" opacity-s="0">
|
||||
CONTACT US
|
||||
<h1 v-custom-animation.once duration="1s" translate-y-s="-100%" opacity-s="0">
|
||||
{{ $t('MainHeader.ContactUs') }}
|
||||
</h1>
|
||||
</section>
|
||||
<section class="contact">
|
||||
<span class="iconfont icon-dingwei"></span>
|
||||
<h3 class="title">Contact</h3>
|
||||
<h3 class="title">{{ $t('Contact') }}</h3>
|
||||
<a class="email" href="mailto:info@code-create.com.hk">info@code-create.com.hk</a>
|
||||
</section>
|
||||
<section class="contact-input">
|
||||
<div class="box">
|
||||
<h3 class="title">Get In Touch</h3>
|
||||
<div class="tip">Stay up to date with our e-newsletter</div>
|
||||
<input
|
||||
v-model="email"
|
||||
@keydown.enter.prevent="submit"
|
||||
type="email"
|
||||
placeholder="Email Address"
|
||||
/>
|
||||
<div v-show="error" class="error">{{ error }}</div>
|
||||
<button custom @click="submit">SUBMIT</button>
|
||||
</div>
|
||||
<EmailBox @submit="submit" :title="$t('GetInTouch')" :tip="$t('StayUpToDate')" />
|
||||
</section>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue'
|
||||
const email = ref('')
|
||||
const error = ref('')
|
||||
const submit = () => {
|
||||
if (!validateEmail(email.value)) return
|
||||
console.log(email.value)
|
||||
}
|
||||
// 验证邮箱
|
||||
const validateEmail = (email: string) => {
|
||||
if (email === '') {
|
||||
error.value = 'Please fill out this field.'
|
||||
return false
|
||||
} else if (!/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/.test(email)) {
|
||||
error.value = 'Please enter a valid email address.'
|
||||
return false
|
||||
}
|
||||
error.value = ''
|
||||
return true
|
||||
import EmailBox from '@/components/email-box.vue'
|
||||
|
||||
const submit = (email: string) => {
|
||||
console.log(email)
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -74,6 +50,7 @@
|
||||
letter-spacing: 2px;
|
||||
color: #fff;
|
||||
margin-bottom: 50px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
> .contact {
|
||||
@@ -103,44 +80,8 @@
|
||||
> .contact-input {
|
||||
padding: 100px;
|
||||
background-color: #faf8f8;
|
||||
> .box {
|
||||
> .email-box {
|
||||
max-width: 860px;
|
||||
width: 100%;
|
||||
padding: 80px;
|
||||
margin: 0 auto;
|
||||
background-color: #fff;
|
||||
box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
|
||||
border-radius: 40px;
|
||||
> .title {
|
||||
font-size: 40px;
|
||||
color: #222;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
> .tip {
|
||||
color: #4d4d4d;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
> input {
|
||||
width: 100%;
|
||||
border-radius: 40px;
|
||||
height: 40px;
|
||||
padding: 0 20px;
|
||||
border: 1px solid #e1e1e1;
|
||||
outline: none;
|
||||
color: #222;
|
||||
}
|
||||
> .error {
|
||||
font-size: 14px;
|
||||
color: #dc3232;
|
||||
}
|
||||
> button {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
border-radius: 50px;
|
||||
height: 50px;
|
||||
font-weight: bold;
|
||||
--hover-backcolor: #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
149
src/pages/events-detail/all-events.vue
Normal file
149
src/pages/events-detail/all-events.vue
Normal file
@@ -0,0 +1,149 @@
|
||||
<script setup lang="ts">
|
||||
import { ref } from "vue";
|
||||
const eventList = ref([
|
||||
{
|
||||
url:'https://code-create.com.hk/wp-content/uploads/2026/05/45e19bf9012eac5071ace52896e4f53f-600x331.png',
|
||||
title:'Elevate Operation Efficiency',
|
||||
},
|
||||
{
|
||||
url:'https://code-create.com.hk/wp-content/uploads/2026/04/award_qrcode_en-600x750.gif',
|
||||
title:'Elevate Operation Efficiency',
|
||||
},
|
||||
])
|
||||
defineExpose({})
|
||||
</script>
|
||||
<template>
|
||||
<section class="mission">
|
||||
<div class="content">
|
||||
<h2>ALL EVENTS</h2>
|
||||
<div class="all-events">
|
||||
<div v-for="item in eventList" :key="item.url" class="img-item">
|
||||
<div class="img-box">
|
||||
<img :src="item.url" alt="">
|
||||
<div class="line">
|
||||
<div class="day">11</div>
|
||||
<div class="month">May</div>
|
||||
</div>
|
||||
</div>
|
||||
<h3>{{item.title}}</h3>
|
||||
<div class="info">
|
||||
<p>
|
||||
2026-05-11 10:00 - 12:00
|
||||
</p>
|
||||
</div>
|
||||
<a href="#" class="read-more" target="_blank">
|
||||
Read More
|
||||
<span class="iconfont icon-direction-right"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
<style lang="less" scoped>
|
||||
.mission{
|
||||
width: 100%;
|
||||
background-color: #f9f9f9;
|
||||
> .content{
|
||||
margin: 0 auto;
|
||||
padding: 40px 0px 40px 0px;
|
||||
max-width: 1120px;
|
||||
> h2{
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
font-size: 40px;
|
||||
color: #222222;
|
||||
font-family: "Poppins", Sans-serif;
|
||||
}
|
||||
> .all-events{
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(100px, 1fr));
|
||||
grid-gap: 20px 30px;
|
||||
> .img-item{
|
||||
&:hover{
|
||||
> .img-box{
|
||||
> img{
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
}
|
||||
> .img-box{
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
> img{
|
||||
transition: all .3s;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
> .line{
|
||||
position: absolute;
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
left: 15px;
|
||||
top: 15px;
|
||||
border-radius: 50%;
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
> .day{
|
||||
font-family: "Poppins", Sans-serif;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
}
|
||||
> .month{
|
||||
font-size: 12px;
|
||||
line-height: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
> h3{
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
> .info{
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
color: #555;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.read-more{
|
||||
color: #9A2125;
|
||||
box-shadow: none;
|
||||
font-size: 14px;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
&:hover{
|
||||
&::after{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
&::after{
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 1px;
|
||||
background-color: #9A2125;
|
||||
transition: all .3s;
|
||||
}
|
||||
> span{
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
39
src/pages/events-detail/index.vue
Normal file
39
src/pages/events-detail/index.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<script setup lang="ts">
|
||||
import { computed, ref } from 'vue'
|
||||
import Swiper from './swiper.vue'
|
||||
import AllEvents from './all-events.vue'
|
||||
import listEn from './list-en.js'
|
||||
import listZhCn from './list-zh-cn.js'
|
||||
import listZhTw from './list-zh-tw.js'
|
||||
import { LangType } from '../../lang'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
const { locale } = useI18n()
|
||||
const allList = computed(() => {
|
||||
if (locale.value === LangType.zhCn) {
|
||||
return listZhCn
|
||||
}
|
||||
if (locale.value === LangType.zhTw) {
|
||||
return listZhTw
|
||||
}
|
||||
return listEn
|
||||
})
|
||||
defineExpose({})
|
||||
</script>
|
||||
<template>
|
||||
<div class="events">
|
||||
<div class="placeholder"></div>
|
||||
<Swiper />
|
||||
<AllEvents />
|
||||
</div>
|
||||
</template>
|
||||
<style lang="less" scoped>
|
||||
.events{
|
||||
.placeholder{
|
||||
height: var(--main-header-height, 100px);
|
||||
width: 100%;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background-color: #000;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
1085
src/pages/events-detail/list-en.js
Normal file
1085
src/pages/events-detail/list-en.js
Normal file
File diff suppressed because it is too large
Load Diff
1081
src/pages/events-detail/list-zh-cn.js
Normal file
1081
src/pages/events-detail/list-zh-cn.js
Normal file
File diff suppressed because it is too large
Load Diff
1084
src/pages/events-detail/list-zh-tw.js
Normal file
1084
src/pages/events-detail/list-zh-tw.js
Normal file
File diff suppressed because it is too large
Load Diff
175
src/pages/events-detail/swiper.vue
Normal file
175
src/pages/events-detail/swiper.vue
Normal file
@@ -0,0 +1,175 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
||||
import { Carousel as KagolCarousel } from '@kagol/vue-carousel'
|
||||
import '@kagol/vue-carousel/dist/style.css'
|
||||
//const props = defineProps({
|
||||
//})
|
||||
//const emit = defineEmits([
|
||||
//])
|
||||
let list = ref([
|
||||
{
|
||||
url:'https://code-create.com.hk/wp-content/uploads/2026/04/award_qrcode_en-819x1024.gif'
|
||||
},
|
||||
{
|
||||
url:'https://code-create.com.hk/wp-content/uploads/2026/03/Code-Create-Limited-1536x1029.jpg'
|
||||
},
|
||||
{
|
||||
url:'https://code-create.com.hk/wp-content/uploads/2026/04/award_qrcode_en-819x1024.gif'
|
||||
},
|
||||
{
|
||||
url:'https://code-create.com.hk/wp-content/uploads/2026/03/Code-Create-Limited-1536x1029.jpg'
|
||||
},
|
||||
])
|
||||
const activePage = ref(0)
|
||||
onMounted(()=>{
|
||||
})
|
||||
onUnmounted(()=>{
|
||||
})
|
||||
defineExpose({})
|
||||
</script>
|
||||
<template>
|
||||
<section class="events-swiper">
|
||||
<div class="content">
|
||||
<KagolCarousel
|
||||
:autoplay="false"
|
||||
:interval="1000"
|
||||
class="events-carousel"
|
||||
>
|
||||
<div class="carousel-item" v-for="(item,index) in list" :key="index">
|
||||
<div class="img-box">
|
||||
<img :src="item.url" alt="">
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h4 class="title">
|
||||
Honored to be selected as Alibaba JUMPSTARTER 2026 Top 30 Startup | Code-Create
|
||||
</h4>
|
||||
<div class="info">
|
||||
Honored to be selected as a Alibaba JUMPSTARTER 2026 Top 30 Startup |...
|
||||
</div>
|
||||
<a href="#" class="read-more" target="_blank">
|
||||
Read More
|
||||
<span class="iconfont icon-direction-right"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<template #pagination="{ prevPage, nextPage }">
|
||||
<div class="prev-page" @click="prevPage">
|
||||
<span class="iconfont icon-direction-left"></span>
|
||||
</div>
|
||||
<div class="next-page" @click="nextPage">
|
||||
<span class="iconfont icon-direction-right"></span>
|
||||
</div>
|
||||
</template>
|
||||
<template #indicator></template>
|
||||
</KagolCarousel>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
<style lang="less" scoped>
|
||||
.events-swiper{
|
||||
width: 100%;
|
||||
background-color: #f9f9f9;
|
||||
> .content{
|
||||
padding: 40px 0px 40px 0px;
|
||||
margin: 0 auto;
|
||||
max-width: 1120px;
|
||||
position: relative;
|
||||
> .events-carousel{
|
||||
.carousel-item{
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
&:hover{
|
||||
img{
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
.img-box{
|
||||
border-radius: 20px;
|
||||
height: 600px;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
img{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
background-color: #FFF;
|
||||
transition: all .3s;
|
||||
}
|
||||
}
|
||||
> .text-box{
|
||||
margin-top: -40px;
|
||||
padding: 25px;
|
||||
width: 560px;
|
||||
background-color: #fff;
|
||||
position: relative;
|
||||
z-index: 22;
|
||||
.title{
|
||||
font-family: Poppins, sans-serif;
|
||||
font-weight: 600;
|
||||
letter-spacing: 2px;
|
||||
color: #222222;
|
||||
text-transform: capitalize;
|
||||
font-size: 20px;
|
||||
margin-bottom: 9px;
|
||||
}
|
||||
.info{
|
||||
color: #555;
|
||||
font-size: 16px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.read-more{
|
||||
color: #9A2125;
|
||||
box-shadow: none;
|
||||
font-size: 14px;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
&:hover{
|
||||
|
||||
}
|
||||
&::after{
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: #9A2125;
|
||||
transition: all .3s;
|
||||
}
|
||||
> span{
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.prev-page, .next-page{
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin: 0 10px;
|
||||
border: 1px solid #e1e1e1;
|
||||
background-color: #fff;
|
||||
border-radius: 50%;
|
||||
transition: all .3s;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
> span{
|
||||
font-size: 38px;
|
||||
}
|
||||
&:hover{
|
||||
border: 1px solid #000;
|
||||
}
|
||||
}
|
||||
.prev-page{
|
||||
right: 112px;
|
||||
}
|
||||
.next-page{
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -109,6 +109,9 @@ defineExpose({})
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
margin-bottom: 10px;
|
||||
&:hover{
|
||||
color: #626262;
|
||||
}
|
||||
}
|
||||
> .info{
|
||||
font-size: 16px;
|
||||
|
||||
@@ -1,7 +1,22 @@
|
||||
<script setup lang="ts">
|
||||
import { computed, ref } from 'vue'
|
||||
import Swiper from './swiper.vue'
|
||||
import AllEvents from './all-events.vue'
|
||||
|
||||
import listEn from './list-en.js'
|
||||
import listZhCn from './list-zh-cn.js'
|
||||
import listZhTw from './list-zh-tw.js'
|
||||
import { LangType } from '../../lang'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
const { locale } = useI18n()
|
||||
const allList = computed(() => {
|
||||
if (locale.value === LangType.zhCn) {
|
||||
return listZhCn
|
||||
}
|
||||
if (locale.value === LangType.zhTw) {
|
||||
return listZhTw
|
||||
}
|
||||
return listEn
|
||||
})
|
||||
defineExpose({})
|
||||
</script>
|
||||
<template>
|
||||
|
||||
524
src/pages/events/list-en.js
Normal file
524
src/pages/events/list-en.js
Normal file
@@ -0,0 +1,524 @@
|
||||
export default [
|
||||
{
|
||||
"id": 58,
|
||||
"title": "AiDA On Phoenix TV!! Behind The Scenes 🎉",
|
||||
"brief": "AiDA on Phoenix TV!! Behind the scenes 🎉 Design, as we know it,...",
|
||||
"day": "11",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/05/45e19bf9012eac5071ace52896e4f53f-300x166.png",
|
||||
"aaurl": "https://code-create.com.hk/aida-on-phoenix-tv-behind-the-scenes-%f0%9f%8e%89/"
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"title": "2026 — Your Global Design Stage",
|
||||
"brief": "2026 — Your Global Design Stage Some designs are more than just finished...",
|
||||
"day": "22",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/04/award_qrcode_en-240x300.gif",
|
||||
"aaurl": "https://code-create.com.hk/2026-your-global-design-stage/"
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"title": "Code-Create Voted Top 5 People’s Choice At Alibaba JUMPSTARTER 2026",
|
||||
"brief": "Code-Create Voted Top 5 People’s Choice at Alibaba JUMPSTARTER 2026 Code-Create earned a...",
|
||||
"day": "20",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/03/Code-Create-Limited-300x201.jpg",
|
||||
"aaurl": "https://code-create.com.hk/code-create-voted-top-5-peoples-choice-at-alibaba-jumpstarter-2026/"
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"title": "Wait… AiDA Can Also Be Used For Visual Merchandising At Fashion Week?",
|
||||
"brief": "Wait… AiDA can also be used for visual merchandising at Fashion Week? In...",
|
||||
"day": "04",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/03/IMG_4901-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/wait-aida-can-also-be-used-for-visual-merchandising-at-fashion-week/"
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"title": "Generations Of Craftsmanship, Unlocking New Possibilities Between Tradition And Tech-Driven Fashion",
|
||||
"brief": "Generations of Craftsmanship, Unlocking New Possibilities Between Tradition and Tech-Driven Fashion Code-Create’s Co-Founder...",
|
||||
"day": "09",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/02/%E5%BE%AE%E4%BF%A1%E5%9C%96%E7%89%87_2026-02-02_121646_493-e1770608490912-300x234.jpg",
|
||||
"aaurl": "https://code-create.com.hk/generations-of-craftsmanship-unlocking-new-possibilities-between-tradition-and-tech-driven-fashion/"
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"title": "Honored To Be Selected As Alibaba JUMPSTARTER 2026 Top 30 Startup | Code-Create",
|
||||
"brief": "Honored to be selected as a Alibaba JUMPSTARTER 2026 Top 30 Startup |...",
|
||||
"day": "30",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/Jumpstarter-horizontal-300x169.jpg",
|
||||
"aaurl": "https://code-create.com.hk/honored-to-be-selected-as-a-jumpstarter-2026-top-30-startup-code-create/"
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"title": "Across Disciplines · Across Borders|AiDA Makes Design Accessible To All",
|
||||
"brief": "Across Disciplines · Across Borders|AiDA Makes Design Accessible to All During a...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_4524-300x225.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/across-disciplines-%c2%b7-across-borders%ef%bd%9caida-makes-design-accessible-to-all/"
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"title": "Stepping Into PolyU, Connecting The Future",
|
||||
"brief": "Stepping into PolyU, Connecting the Future At Code-Create, we’ve always believed that education...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_7777-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/stepping-into-polyu-connecting-the-future/"
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"title": "AiDA Empowering Fashion Design Education At HK SFU",
|
||||
"brief": "AiDA Empowering Fashion Design Education at HK SFU The Code-Create team recently visited...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_2710-300x225.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/aida-empowering-fashion-design-education-at-hk-sfu/"
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"title": "Where Fashion Leaders Meet | FAHK 2025",
|
||||
"brief": "Where Fashion Leaders Meet | FAHK 2025 At Fashion Asia Hong Kong 2025,...",
|
||||
"day": "18",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/12/IMG_8466-300x225.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/where-fashion-leaders-meet-fahk-2025/"
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"title": "AiDA × Hanyang University|A Deep Dive Into AI-Driven Fashion Design",
|
||||
"brief": "AiDA × Hanyang University|A Deep Dive into AI-Driven Fashion Design PhD students from...",
|
||||
"day": "01",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/12/IMG_8320-1-300x225.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/aida-x-hanyang-university%ef%bd%9ca-deep-dive-into-ai-driven-fashion-design/"
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"title": "Korea’s Chonnam National University Is Using AiDA!",
|
||||
"brief": "Korea’s Chonnam National University Is Using AiDA! Students and faculty from Chonnam National...",
|
||||
"day": "21",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_7909-scaled-e1763695571462-300x188.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/koreas-chonnam-national-university-is-using-aida/"
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"title": "When AI Meets Love | Fashion Knows No Age",
|
||||
"brief": "When AI Meets Love | Fashion Knows No Age Code-Create and Caritas St. Joseph Secondary School joined hands to bring creativity into the community through AiDA. Students used AI to design personalized outfits for the elderly — each piece filled with warmth and heartfelt care. From classroom to runway, from inspiration to action, AI is more than a tool of innovation — it’s a force that connects people. ‘The future of the future’ is being redefined by these young designers.",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_5366-300x225.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/when-ai-meets-love-fashion-knows-no-age/"
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"title": "Creator Shares AiDA Design Insights At University Lecture",
|
||||
"brief": "Creator Shares AiDA Design Insights at University Lecture At Kyung Hee University’s ‘AI AnD Talk 2025’ in Korea, designer Jae shared his unique experience using AiDA in fashion creation. He demonstrated how AiDA helps break creative boundaries, enabling a more open dialogue between technology and fashion. The talk not only offered cutting-edge insights into AI-driven fashion but also inspired students to reimagine the future of design education and creative practice.",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/day01_0846-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/creator-shares-aida-design-insights-at-university-lecture/"
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"title": "Temasek Polytechnic Visits The Birthplace Of AiDA",
|
||||
"brief": "Temasek Polytechnic Visits the Birthplace of AiDA A delegation of students and faculty from Temasek Polytechnic, Singapore visited AiDLab, the research and development hub behind AiDA. During the visit, guests experienced the newly upgraded AiDA 3.1, along with several of AiDLab’s cutting-edge innovations — including 3D body scanning, digital human generation, and intelligent textile research, exploring how AI technology is reshaping the future of fashion design. 💡 To conclude the visit, Ms. Kim Wong, Founder of Code-Create, shared insights on AiDA’s vision and future direction, inspiring engaging discussions among students and faculty. Looking ahead, we aim to collaborate with more...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_0154-300x225.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/temasek-polytechnic-visits-the-birthplace-of-aida/"
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"title": "AiDA Powers Cultural AI Exhibition In Hong Kong! ",
|
||||
"brief": "AiDA Powers Cultural AI Exhibition in Hong Kong! After nearly six months of collaboration, the Cultural AI project — powered by AiDA, our AI fashion design platform — has officially come to life in Hong Kong! In partnership with Temasek Polytechnic (Singapore), Hong Kong designers Elmer Ho and Liz Mak, and PhD researchers Zhu Jia Yu and Zhu Shu Min from PolyU, students explored how AiDA can transform cultural motifs into innovative fashion concepts and tangible designs. A big thank-you to everyone who joined the opening ceremony and to all our partners who made this milestone possible. Come visit the...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_4112-300x225.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/aida-powers-cultural-ai-exhibition-in-hong-kong/"
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"title": "KIFT Talk | Co-Creating Fashion With AiDA",
|
||||
"brief": "KIFT Talk | Co-Creating Fashion with AiDA At the Korea International Fashion Tech (KIFT) event, Korean designer Jae shared insights on the collaboration between BESFXXK and AiDA.He showcased how multiple BESFXXK collections were created with the support of AiDA, using the AI assistant to quickly transform inspiration into innovative and diverse designs.The talk highlighted the boundless potential of AI and designers co-creating, offering a glimpse into the future of fashion design.",
|
||||
"day": "30",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/cover-3-300x225.jpg",
|
||||
"aaurl": "https://code-create.com.hk/kift-talk-co-creating-fashion-with-aida/"
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"title": "AiDA In The Classroom|Global Designer Shares AI × Fashion In Practice",
|
||||
"brief": "AiDA in the Classroom|Global Designer Shares AI × Fashion in Practice A special moment from Kyung Hee University in Korea Designer Jae (Creative Director of BESFXXK) introduced AiDA and its R&D team, AiDLab, while sharing Code-Create’s vision for the integration of AI and the fashion ecosystem, as well as the applications of AI in fashion design. Through real case studies, he demonstrated how moodboards, prints, sketches, and final renderings can come together seamlessly, giving students a firsthand look at how AI enhances creativity.It’s inspiring to see the next generation of designers engaging with AI × fashion, opening new possibilities for the future...",
|
||||
"day": "26",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/Cover-300x225.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-in-the-classroom%ef%bd%9cglobal-designer-shares-ai-x-fashion-in-practice/"
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"title": "AiDA | Cultural Motifs × AI Fashion Experiment",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/09/250916-promotional-video.mp4 AiDA | Cultural Motifs × AI Fashion Experiment AiDA has teamed up with Singapore’s Temasek Polytechnic to launch a fashion project inspired by cultural motifs. Led by two experienced Hong Kong designers and PhD researchers from PolyU, students are guided to use the AiDA to transform cross-cultural elements into complete fashion collections.Through discussion and creation, AiDA makes ideas come to life faster and design more intuitively and efficiently. We can’t wait to see how young designers showcase global perspectives and cultural creativity with the power of AI! ",
|
||||
"day": "23",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/promotional-video-cover-300x169.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-cultural-motifs-x-ai-fashion-experiment/"
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"title": "From Sketch To Garment|Made Possible With AiDA",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/09/英-Intertextile-SH.mov From Sketch to Garment|Made Possible with AiDA Designs generated with AiDA 3.1 have now been transformed into real garments. The future of fashion is right before your eyes. ",
|
||||
"day": "16",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/Video-cover-225x300.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/from-sketch-to-garment%ef%bd%9cmade-possible-with-aida/"
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"title": "AiDA 3.1 At Intertextile Shanghai|Upgraded Experience On-Site",
|
||||
"brief": "AiDA 3.1 at Intertextile Shanghai|Upgraded Experience On-Site Code-Create proudly presented the newly upgraded AiDA 3.1 at Intertextile Shanghai! ✨📍 At our booth, AiDA attracted an overwhelming response — with designers, students, and industry professionals eager to experience the platform first-hand.Visitors explored the complete design workflow, from moodboards and prints to sketches and final product renderings, while discovering the exciting new features of AiDA 3.1:✨ Sharper, higher-resolution outputs✨ Canvas workspace & Advanced Tools✨ Transform design drafts into lifelike model photos with adjustable poses✨ New product video generation, making designs more dynamic and immersiveAiDA 3.1 not only speeds up the design process...",
|
||||
"day": "09",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/cover-1-300x225.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-3-1-at-intertextile-shanghai%ef%bd%9cupgraded-experience-on-site/"
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"title": "Live From Seoul | AiDA Booth Is Buzzing!",
|
||||
"brief": "Live from Seoul | AiDA Booth is Buzzing! A quick share from Korea COEX, Seoul –This time, Code-Create brought our AI fashion design platform AiDA to Korea, and the booth was packed with excitement! Designers, students, and industry friends all came to explore AiDA, and we also showcased real garments created with AiDA designs. Everyone’s big question: Can AI really help designers bring ideas to life faster?The answer is yes!AiDA works seamlessly with a designer’s creative flow—from moodboards to prints, sketches, and final renderings—step by step through the whole process. And the physical outfits on display were the best proof: AI-driven creativity...",
|
||||
"day": "21",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/WhatsApp-Image-2025-08-20-at-15.21.45-225x300.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/live-from-seoul-aida-booth-is-buzzing/"
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"title": "Preview In Seoul 2025",
|
||||
"brief": "Preview in Seoul 2025 Code-Create is heading to Seoul! We’re excited to join Preview in Seoul 2025 next week, bringing AiDA — our AI-powered fashion design platform — to Korea for the very first time. Come visit our booth and see how AiDA supports designers from concept to creation, and how AI is shaping the future of fashion. On 21 Aug, Code-Create founder & CEO Kim Wong, AiDLab’s Prof. Calvin Wong and BESFXXK Creative Director Jae Lim in a special session discussing how human creativity and AI can work together to elevate the fashion industry. And don’t miss our pitching...",
|
||||
"day": "15",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/poster-213x300.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/preview-in-seoul-2025/"
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"title": "Code-Create X YaleWomen Hong Kong | AI × Fashion × Design",
|
||||
"brief": "Code-Create x YaleWomen Hong Kong | AI × Fashion × Design On 30 July 2025, Code-Create Co-Founder & CEO Kim Wong was invited by YaleWomen Hong Kong to share her insights on the evolving intersection of fashion, AI, and entrepreneurship. Drawing on her extensive leadership experience at global fashion houses—including DFS USA, Lane Crawford, Burberry Asia, Brunello Cucinelli, and Versace Asia Pacific—Kim spoke about her journey from the fashion C-suite to academia, and now to the world of start-ups. She introduced AiDA 3.0, Code-Create’s AI-powered interactive design assistant, developed by AiDLab in collaboration with The Hong Kong Polytechnic University and...",
|
||||
"day": "30",
|
||||
"month": "Jul",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/WhatsApp-%E5%9C%96%E7%89%872025-08-0511.57.53_77f970a9-300x261.jpg",
|
||||
"aaurl": "https://code-create.com.hk/code-create-x-yalewomen-hong-kong-ai-x-fashion-x-design/"
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"title": "When AI Becomes Your Creative Partner: AiDA With Creators Worldwide",
|
||||
"brief": "When AI Becomes Your Creative Partner: AiDA with Creators Worldwide We are honored to support the 2025 SHE IS AI Fashion Awards as a proud partner—an international design competition centered on AI, fashion, and sustainable innovation.This prestigious event brings together designers and creatives from around the globe to explore AI as a “creative collaborator” across all stages of fashion design. Our AI platform, AiDA, serves as one of the key design tools, providing technical support to inspire and facilitate participants’ design development.From digital concepts to garment launches, and from virtual runways to global retail, every step of the design process...",
|
||||
"day": "27",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-24-at-10.14.51_e49379ab-300x169.jpg",
|
||||
"aaurl": "https://code-create.com.hk/when-ai-becomes-your-creative-partner-aida-with-creators-worldwide/"
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"title": "AiDA Makes A Splash At The Korean Society Of Fashion Design",
|
||||
"brief": "AiDA Makes a Splash at The Korean Society of Fashion Design At The Korean Society of Fashion Design, designer Jae introduced AiDA, an innovative design AI tool, to the audience. Jae detailed how AiDA leverages cutting-edge technology to boost design efficiency, saving designers time and allowing them to focus on creativity. Participants were impressed by AiDA’s ability to provide unlimited creative inspiration. They believe it not only stimulates fresh design concepts but also assists designers in transcending conventional design boundaries to discover new possibilities. AiDA’s powerful functions and potential excited everyone present and sparked intense discussion. AiDA is set to...",
|
||||
"day": "25",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/%E5%B0%81%E9%9D%A2-2-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-makes-a-splash-at-the-korean-society-of-fashion-design/"
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"title": "Intertextile 2025 Review | A Real Dialogue Between AI And Design",
|
||||
"brief": "A meaningful dialogue about AI and design inspiration unfolded at Shenzhen Convention Center, where AiDA connected with designers and brand founders from across China. What we shared:🔹 The complete AI workflow – from fabric selection to pattern generation🔹 How AI tools deliver both efficiency gains and creative stimulation Though the exhibition has ended, the conversation about design’s future continues. We extend our gratitude to:✓ Those who exchanged business cards with us✓ Everyone who waited in line to experience AiDA✓ Even those who simply glanced at our booth The story doesn’t end here.Explore more real-world AiDA case studies on our page...",
|
||||
"day": "11",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/%E5%B0%81%E9%9D%A2-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/intertextile-2025-review-a-real-dialogue-between-ai-and-design/"
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"title": "Fashion Industry Hot Topic: Digital Innovation And AI Empowered Fashion",
|
||||
"brief": "Fashion Industry Hot Topic: Digital Innovation and AI Empowered Fashion Kim Wong, CEO of Code – Create, was recently invited to the “Digital Innovation Workshop”. During her presentation, Ms. Kim Wong introduced AiDA, an AI – powered design tool that is designer – led. She elaborated on how fashion businesses can harness this innovative technology to drive innovation. With its cutting – edge features, AiDA offers the fashion industry a more efficient and precise solution, enabling brands to stand out in the fiercely competitive market. In the roundtable discussion on “Avoiding Pitfalls in AI Implementation for the Consumer Goods Industry,”...",
|
||||
"day": "17",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-3-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/fashion-industry-hot-topic-digital-innovation-and-ai-empowered-fashion/"
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"title": "UR:Fresh Take On Fashion AI — AiDA",
|
||||
"brief": "UR:Fresh Take on Fashion AI — AiDA Code – Create was honored to visit URBAN REVIVO (UR), kicking off a great dialogue on fashion and AI. Thanks to Invest HK for introducing Code – Create to UR. AiDA, the designer-led AI fashion design solution, amazed everyone. With advanced technology and designers’ ideas, it always brings new inspiration to the design team’s fashion creation process, breaking through traditional design constraints and showing everyone the infinite possibilities of fashion design with AI assistance. As AiDA keeps updating, it will continue to shine in the fashion world, expand its fashion – circle influence,...",
|
||||
"day": "15",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-2-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/ur%ef%bc%9afresh-take-on-fashion-ai-aida/"
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"title": "AiDA’s Sustainable Design Innovation At Daegu Preview 2025",
|
||||
"brief": "AiDA’s Sustainable Design Innovation at Daegu Preview 2025 At the 23rd International Textile Fair In PREVIEW IN DAEGU 2025, Korean designer Jae held a sharing session themed “Pursuing ‘zero-waste’ design through AI technology”. He emphasized that the AI design system —AiDA, with its powerful AI technology, is dedicated to optimizing the fashion design process. AiDA can save designers 60% of the time in the design phase and 20% in sampling, effectively reducing resource waste and driving the sustainable evolution of the fashion ecosystem.",
|
||||
"day": "13",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aidas-sustainable-design-innovation-at-daegu-preview-2025/"
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"title": "Congratulations To Code-Create For Being Named One Of Hong Kong’s Hottest Startups Of 2025",
|
||||
"brief": "Congratulations to Code-Create for being named one of Hong Kong’s Hottest Startups of 2025 Code-Create has made remarkable progress with its AI-powered design tool AiDA 3.0, which has transformed the fashion design process by offering quick and customizable collections while respecting the originality of artistic creation.. This recognition is a testament to the company’s hard work, innovation, and potential in the fashion industry. Code-Create continue to push boundaries and shape the future of fashion design with its cutting-edge AI technology. https://hongkongbusiness.hk/markets-investing/exclusive/hong-kongs-hottest-startups-2025",
|
||||
"day": "05",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/IMG_1749-2-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/congratulations-to-code-create-for-being-named-one-of-hong-kongs-hottest-startups-of-2025/"
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"title": "AiDA Workshop At CBCC",
|
||||
"brief": "AiDA Workshop at CBCC The AiDA workshop sparked great interest among teacher and students, who experienced AI innovation firsthand. As an advanced AI-powered design tool, AiDA offers flexible design adjustments, powerful AIGC functions, and the ability to generate 8 looks in seconds—providing a fresh solution for fashion design. This workshop not only deepened participants’ understanding of AiDA’s design process but also demonstrated the powerful integration of education and AI technology, ushering in a new chapter in smart education.",
|
||||
"day": "29",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-3-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-workshop-at-cbcc/"
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"title": "AI-Powered Design Curriculum: Pioneering Creativity In Fashion Education",
|
||||
"brief": "AI-Powered Design Curriculum: Pioneering Creativity in Fashion Education Creative Director of the Korean brand BESFXXK, Jae Hyuk Lim, partnered with Hongik University, Sejong University, and Paichai University to deliver innovative AiDA AI design courses. Through hands-on workshops, students gained practical experience in AI-assisted creation, blending cutting-edge fashion technology with academic learning to inspire innovation among Gen-Z designers. The curriculum covered AI applications in fashion design and explored how the AiDA system enhances design efficiency and creativity. Leveraging his industry expertise and academic background, Lim imparted cutting-edge fashion-tech knowledge, sparking students’ interest in the fusion of fashion and technology.",
|
||||
"day": "20",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/IMG_1290-300x169.jpg",
|
||||
"aaurl": "https://code-create.com.hk/ai-powered-design-curriculum-pioneering-creativity-in-fashion-education/"
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"title": "Code-Create X BIFU: Breakthrough In The AI Era",
|
||||
"brief": "Code-Create x BIFU: Breakthrough in the AI Era Fashion brand BIFU, founded by designer Xing Chen, has significantly enhanced its design efficiency and streamlined its creative process through collaboration with Code-Create, leveraging AI design assistant AiDA. By integrating inputs such as mood boards, fabric prints, color palettes, and sketches, AiDA rapidly generates original designs, allowing designers to focus on core creative tasks while maintaining a deep exploration of brand culture and craftsmanship. Since its establishment in 2013, BIFU has drawn inspiration from traditional Chinese culture, combining it with modern design aesthetics to create high-end ready-to-wear and accessories for both men...",
|
||||
"day": "16",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/coverpage-213x300.jpg",
|
||||
"aaurl": "https://code-create.com.hk/code-create-x-bifu-breakthrough-in-the-ai-era/"
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"title": "South Korean Brand BESFXXK Leveraged AiDA To Create Its 2025 FW Ready-To-Wear Collection.",
|
||||
"brief": "South Korean brand BESFXXK leveraged AiDA to create its 2025 FW ready-to-wear collection. By optimizing the design process, AiDA significantly improved efficiency, reducing the time required from concept development to final product visualization by 60%. This advancement enables designers to focus more intently on core creative tasks, maximizing their expertise while enhancing the quality of design outcomes. Additionally, it frees up resources to prioritize innovative exploration and deeper creative engagement.",
|
||||
"day": "10",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-214x300.jpeg",
|
||||
"aaurl": "https://code-create.com.hk/south-korean-brand-besfxxk-leveraged-aida-to-create-its-2025-fw-ready-to-wear-collection/"
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"title": "AiDA: Accelerating Fashion Design Efficiency By Over 60%",
|
||||
"brief": "AiDA: Accelerating Fashion Design Efficiency by Over 60% Code-Create’s Co-Founder and CEO, Kim Wong, was interviewed by Hong Kong Business, explaining how the AI design assistant is revolutionizing fashion design by merging technology with creativity to enhance designers’ workflow. AiDA helps boost efficiency during design process by integrating over 500,000 sketches and current trends, generating innovative designs from keywords or themes input by designers. Designers maintain creative control through real-time modifications, ensuring their unique vision is preserved. Rather than replacing designers, AiDA empowers them by boosting design efficiency, freeing up 60% of their time for creative work. Code-Create envisions revitalizing...",
|
||||
"day": "08",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/WhatsApp-Image-2025-04-08-at-16.38.52_d42c070c-213x300.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-accelerating-fashion-design-efficiency-by-over-60/"
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"title": "Ms. Kim Wong Breaks Down How AI Is Reshaping Sustainable Fashion",
|
||||
"brief": "Ms. Kim Wong Breaks Down How AI Is Reshaping Sustainable Fashion Code-Create CEO Ms. Kim was invited to deliver a captivating sharing on “Sustainable Fashion Innovation” to SFT students at The Hong Kong Polytechnic University. Drawing from the core principles of “sustainability” and “innovation,” Kim explored how the integration of technology and design can drive the fashion industry toward greener transformation. She highlighted Code-Create’s AI-powered fashion design tool, AiDA, demonstrating how AI can optimize design processes, minimize resource waste, and unlock the tool’s potential in real-world applications. The class was very interactive, with students actively participating and showing lots of...",
|
||||
"day": "01",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-2-300x158.jpg",
|
||||
"aaurl": "https://code-create.com.hk/ms-kim-wong-breaks-down-how-ai-is-reshaping-sustainable-fashion/"
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"title": "The AiDA Workshop Was Successfully Held In Shenzhen",
|
||||
"brief": "The AiDA Workshop was successfully held in Shenzhen The AiDA SZ Workshop attracted a wide range of professionals from the fashion industry. The atmosphere at the event was highly engaging and inspiring. Participants, many of whom were experiencing AiDA for the first time, were extremely excited as they explored its features. Through hands-on experience, they truly felt the immense potential of AI in fashion, as if they had unlocked a whole new world of possibilities. Fashion design tasks that used to be difficult now became easily achievable with AiDA, unlocking new trends in just minutes. AiDA has undoubtedly become the...",
|
||||
"day": "31",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-1-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/the-aida-workshop-was-successfully-held-in-shenzhen/"
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"title": "AiDA X SFT Fashion AI Award Successfully Finished",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/03/0310-video-for-ceremony.mp4 AiDA x SFT Fashion AI Award Successfully Finished In the fast-paced world of fashion, innovation remains the driving force of progress. The recent conclusion of the AiDA x SFT Fashion AI Competition marks a key step in the industry’s digital transformation. The event drew talented students from Hong Kong Polytechnic University SFT students, who skillfully used AiDA throughout their creative process to deliver stunning creations. More than just clothing displays, these works represent the fusion of fashion and AI, pointing to the future of the industry. Award Winners:Grand Prize: Nina WaszakRunners-up: Kock Man Yan, Yuzhi Lai We believe AI-powered...",
|
||||
"day": "12",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/Image_20250507135632-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-x-sft-fashion-ai-award-successfully-finished/"
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"title": "Feminine Power: Ms. Kim Wong’s Journey In Fashion And AI",
|
||||
"brief": "Feminine Power: Ms. Kim Wong’s Journey in Fashion and AI In a recent interview with the Hong Kong Ta Kung Pao, Ms. Kim shared her views and future expectations on AI fashion. With unique vision and courage, Kim moved from traditional fashion to AI fashion. As co-founder and CEO of Code – Create, she is a key driver of the global fashion ecosystem’s transformation. Ms. Kim specially mentioned AiDA, the world’s first fashion AI solution led by designers’ original inspiration. AiDA enables designers to collaborate with AI to quickly create diverse original designs. It can shorten the design time from...",
|
||||
"day": "07",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/WhatsApp-Image-2025-03-11-at-16.20.13_44e39cfe-181x300.jpg",
|
||||
"aaurl": "https://code-create.com.hk/feminine-power-ms-kim-wongs-journey-in-fashion-and-ai/"
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"title": "Achieving Excellence In Design Within An Hour",
|
||||
"brief": "Achieving Excellence in Design within an Hour! Students from PolyU School of Fashion and Textiles (SFT) delivered an impressive series of design works at the AiDA Workshop, all within a mere 60 minutes. AiDA has boosted design process efficiency by over 60%, enhancing overall design efficiency across the board. The newly upgraded AiDA has exceeded our expectations. This is more than just a tool upgrade—it represents a paradigm shift in design productivity.",
|
||||
"day": "20",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/%E5%9C%96%E7%89%87_20250303200046-212x300.jpg",
|
||||
"aaurl": "https://code-create.com.hk/achieving-excellence-in-design-within-an-hour/"
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"title": "Brainstorm With AI",
|
||||
"brief": "Brainstorm with AI!! Students from Caritas St. Joseph Secondary School in Hong Kong recently embarked on an AI-powered design adventure with the designer-led AI tool “AiDA.” Excitement filled the air as students eagerly engaged with the tool, quickly mastering its functions under guidance. They transformed their imaginative ideas into stunning designs, demonstrating remarkable learning ability and creative potential in the realm of AI.During the event, students experienced the three core strengths of AiDA: creativity, efficiency, and sustainability. AiDA can instantly convert text descriptions into eye-catching designs, and designers can easily edit and adjust styles to optimize their creations. This significantly...",
|
||||
"day": "19",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/%E5%9C%96%E7%89%87_20250228085345-300x225.jpg",
|
||||
"aaurl": "https://code-create.com.hk/brainstorm-with-ai/"
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"title": "CEO Of Code-Create Kim Wong’s Inspiring Talk At Henrietta Secondary School",
|
||||
"brief": "CEO of Code-Create Kim Wong’s Inspiring Talk at Henrietta Secondary School — You can chase your dreams at any age! At Henrietta Secondary School, Code-Create’s CEO, Ms. Kim Wong brought a truly enriching sharing session to the students. She opened up to the students, presenting her extraordinary life story. From the initial sprouting of dreams to now standing at the forefront of fashion and technology, her journey unfolds like an inspiring movie, moving every student present. One of the highlights of Ms. Kim Wong’s talk was AiDA, the world’s first designer-led AI design tool. The tool’s straightforward design process and...",
|
||||
"day": "06",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/01/%E6%92%A0%EE%BC%BF%EE%B2%84-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/ceo-of-code-create-kim-wongs-inspiring-talk-at-henrietta-secondary-school/"
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"title": "Announcing The Finalists For AiDA Fashion AI Award",
|
||||
"brief": "Announcing the Finalists for AiDA Fashion AI Award! We are thrilled to announce the top 10 finalists!!! These talented individuals have showcased exceptional creativity and innovation in fashion design and will use AiDA to create their collections. Here are the finalists: Yuzhi Lai Yan Chi Kwan, Jimmy Cheung Tsz Ching, Bobo Nina Waszak WOO SIN YU, Lia Yiu Ching Yau, Emma YAU KA HEI Xu Lulu Kock Man Yan XIEYAUKIT Congratulations to all the finalists! We look forward to an exciting competition and wish each of finalists the best of luck!",
|
||||
"day": "30",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/finalists-225x300.jpg",
|
||||
"aaurl": "https://code-create.com.hk/announcing-the-finalists-for-aida-fashion-ai-award/"
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"title": "【2024 FABI KOREA Conference】:Revolutionizing Fashion Design With AiDA",
|
||||
"brief": "【2024 FABI KOREA Conference】:Revolutionizing Fashion Design with AiDA At the 2024 FABI Conference, AiDA, an AI solution for fashion design, was the star of the show. Kim Wong, CEO of Code-Create, delivered a powerful presentation highlighted AiDA’s transformative impact on the fashion industry. The enthusiastic reception at the conference confirmed AiDA’s popularity and its pivotal role in the future of fashion, where AI meets creativity to redefine the industry’s standards. The 2024 FABI Conference was more than just an event, it was a platform for showcasing the future of fashion. AiDA’s presence there was a clear indication of the direction the...",
|
||||
"day": "07",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/%E5%B0%81%E9%9D%A2-300x225.jpg",
|
||||
"aaurl": "https://code-create.com.hk/revolutionizing-fashion-design-with-aida/"
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"title": "Code-Create’s CEO Kim Wong Honored With Best Paper Award At 2024 International Fashion Conference",
|
||||
"brief": "Code-Create’s CEO Kim Wong Honored with Best Paper Award at 2024 International Fashion Conference We are thrilled to celebrate the CEO of Code-Create, Kim Wong’s outstanding achievement at the 2024 International Conference hosted by the Korean Society of Fashion Business! Kim was honored with the Best Paper Award for her compelling presentation, “Revitalize Fashion Ecosystem through AI – Future of fashion design process.” This presentation showcased the transformative power of AiDA, Code-Create’s designer-led AI tool, which is redefining the fashion design process by providing a platform that understands and enhances the creative vision of its users. This recognition is a...",
|
||||
"day": "07",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/IMG_8903-300x225.jpg",
|
||||
"aaurl": "https://code-create.com.hk/code-creates-ceo-kim-wong-honored-with-best-paper-award-at-2024-international-fashion-conference/"
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"title": "Hanyang University Meets AiDA",
|
||||
"brief": "Hanyang University Meets AiDA: A Fusion of Creativity and Technology During this workshop, we led the faculty and students of Hanyang University on an exploration of the mysteries of AI, experiencing the interaction with the design assistant AiDA. Everyone were truly amazed by AiDA’s unexpected creativity and the dynamic interactions it facilitated. The students’ works revealed new trends in the fashion world. We look forward to more exchanges and cooperation with Hanyang University in the future. Let’s all anticipate our next gathering!",
|
||||
"day": "28",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/%E6%92%A0%EE%BC%BF%EE%B2%84-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/hanyang-university-meets-aida/"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"title": "AiDA Workshop",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2024/11/AiDA-X-RCA-workshop-1.mov Despite the typhoon, our enthusiasm couldn’t be dampened! The event was a massive success, filled with engagement, interaction, and valuable insights! Deep appreciation goes to the distinguished speakers and coaches:Prof. Calvin Wong, CEO of AiDLab & Co-founder of Code-Create — Hong KongZowie and Anne from the Royal College of Art — UKJae from BESFXXK — South KoreaWillis from Zavvyave — Hong KongKitty, Aemika from SFT, PolyU — Hong Kong These experts shared their remarkable AiDA experiences and coached attendees through their AiDA journey! Fashion design instructors and students from SFT, DI, and Youth College were amazed by AiDA’s cutting-edge...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/11/%E6%92%A0%EE%BC%BF%EE%B2%84-300x201.jpg",
|
||||
"aaurl": "https://code-create.com.hk/aida-workshop/"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"title": "AiDA X SFT AI Fashion Award 2024",
|
||||
"brief": "AiDA X SFT AI Fashion Award 2024 With the aim of inspiring students to innovate in fashion design using AI, Code-Create and The Hong Kong Polytechnic University School of Fashion and Textiles (SFT) have jointly launched the ‘AiDA X SFT AI Fashion Award 2024’. This competition provides students with valuable practical AiDA experience, laying the foundation for the future fashion design industry and positioning them as pioneers in AI fashion.The competition is open to all SFT students, with the winners having the chance to win cash prizes (up to 20,000 HKD), internship opportunity at BESFXXK (will work with the renowned...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/11/3611731651515_.pic_hd-225x300.png",
|
||||
"aaurl": "https://code-create.com.hk/fashionaward2024/"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"title": "CentreStage 2024",
|
||||
"brief": "At CentreStage, AiDA has captured the attention of many professionals from the fashion industry...",
|
||||
"day": "03",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/CentreStage-2024-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/centrestage-2024/"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"title": "Press Conference: Code-Create Secures Investment From Eschange Capital",
|
||||
"brief": "The innovative AI fashion design platform AiDA, is leading the fashion industry into a new phase of digital transformation. Code-Create announced yesterday that it has secured strategic ...",
|
||||
"day": "02",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Code-Create-Secures-Investment-from-Eschange-Capital-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/code-create-secures-investment-from-eschange-capital/"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"title": "“Hong Kong China Night” In Paris",
|
||||
"brief": "In Paris, the \"Culture X AI 2024-2025\" event was meticulously planned by the Laboratory for Artificial Intelligence in Design(AiDLab)...",
|
||||
"day": "06",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Hong-Kong-China-Night-in-Paris-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/hong-kong-china-night-in-paris/"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"title": "Culture X Al 2024-2025: Culture And Future Mode",
|
||||
"brief": "Culture X Al: Kan Tai Keung X AiDLab X HK Fashion Designers Show is finally here...",
|
||||
"day": "17",
|
||||
"month": "Jul",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Culture-and-Future-Mode-300x200.jpg",
|
||||
"aaurl": "https://code-create.com.hk/culture-x-al-2024-2025-culture-and-future-mode/"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"title": "Fashion X AI 2022-2023: International Symposium",
|
||||
"brief": "This international symposium will bring together the world's leading...",
|
||||
"day": "17",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_international_symposium-300x150.jpg",
|
||||
"aaurl": "https://code-create.com.hk/fashion-x-ai-2022-2023-international-symposium/"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"title": "Fashion X AI 2022-2023: Touring Exhibitions",
|
||||
"brief": "The upcoming touring exhibitions feature a series of the latest...",
|
||||
"day": "13",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_touring_exhibitions-300x150.jpg",
|
||||
"aaurl": "https://code-create.com.hk/fashion-x-ai-2022-2023-touring-exhibitions/"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "International Seminar On “AI In Fashion Marketing Research”",
|
||||
"brief": "Technology is playing an important role in the design...",
|
||||
"day": "18",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/international_seminar_banner-300x210.jpg",
|
||||
"aaurl": "https://code-create.com.hk/international-seminar-on-ai-in-fashion-marketing-research/"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"title": "Fashion X AI 2022-2023: Fashion Show & Forum",
|
||||
"brief": "AiDLab is honoured to hold the region’s first programme...",
|
||||
"day": "19",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2021/12/fashionai_thumb_fashion_show-300x150.jpg",
|
||||
"aaurl": "https://code-create.com.hk/fashion-x-ai-2022-2023-international-salon/"
|
||||
},
|
||||
{
|
||||
"id": 1,
|
||||
"title": "CENTRESTAGE",
|
||||
"brief": "Code Create has joint a seminar at CENTRESTAGE with AiDLab...",
|
||||
"day": "20",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_cover-1-300x150.jpg",
|
||||
"aaurl": "https://code-create.com.hk/centrestage/"
|
||||
}
|
||||
]
|
||||
466
src/pages/events/list-zh-cn.js
Normal file
466
src/pages/events/list-zh-cn.js
Normal file
@@ -0,0 +1,466 @@
|
||||
export default [
|
||||
{
|
||||
"id": 58,
|
||||
"title": "很荣幸成为 阿里巴巴 JUMPSTARTER 2026 Top 30|Code-Create",
|
||||
"brief": "很荣幸成为 阿里巴巴 JU...",
|
||||
"day": "30",
|
||||
"month": "1 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/Jumpstarter-horizontal-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"title": "匠心精神,开启传统与科技时尚的新可能",
|
||||
"brief": "匠心精神,开启传统与科技时...",
|
||||
"day": "09",
|
||||
"month": "2 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/02/%E5%BE%AE%E4%BF%A1%E5%9C%96%E7%89%87_2026-02-02_121646_493-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"title": "等等,AiDA 还能用来做时装周的陈列设计?",
|
||||
"brief": "等等,AiDA 还能用来做...",
|
||||
"day": "04",
|
||||
"month": "3 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/03/IMG_4901-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"title": "Code-Create 荣获阿里巴巴JUMPSTARTER 2026人气Top5",
|
||||
"brief": "Code-Create V...",
|
||||
"day": "20",
|
||||
"month": "3 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/03/Code-Create-Limited-300x201.jpg",
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"title": "2026 — 您的全球设计舞台",
|
||||
"brief": "2026 — 您的全球设计...",
|
||||
"day": "22",
|
||||
"month": "4 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/04/award_qrcode_en-240x300.gif",
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"title": "AiDA上凤凰卫视了!花絮放送🎉",
|
||||
"brief": "AiDA上凤凰卫视了!花絮...",
|
||||
"day": "11",
|
||||
"month": "5 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/05/45e19bf9012eac5071ace52896e4f53f-300x166.png",
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"title": "Across Disciplines · Across Borders|AiDA Makes Design Accessible To All",
|
||||
"brief": "Across Disciplines · Across Borders|AiDA Makes Design Accessible to All During a...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_4524-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"title": "Stepping Into PolyU, Connecting The Future",
|
||||
"brief": "Stepping into PolyU, Connecting the Future At Code-Create, we’ve always believed that education...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_7777-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"title": "AiDA Empowering Fashion Design Education At HK SFU",
|
||||
"brief": "AiDA Empowering Fashion Design Education at HK SFU The Code-Create team recently visited...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_2710-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"title": "Where Fashion Leaders Meet | FAHK 2025",
|
||||
"brief": "Where Fashion Leaders Meet | FAHK 2025 At Fashion Asia Hong Kong 2025,...",
|
||||
"day": "18",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/12/IMG_8466-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"title": "AiDA × Hanyang University|A Deep Dive Into AI-Driven Fashion Design",
|
||||
"brief": "AiDA × Hanyang University|A Deep Dive into AI-Driven Fashion Design PhD students from...",
|
||||
"day": "01",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/12/IMG_8320-1-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"title": "Korea’s Chonnam National University Is Using AiDA!",
|
||||
"brief": "Korea’s Chonnam National University Is Using AiDA! Students and faculty from Chonnam National...",
|
||||
"day": "21",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_7909-scaled-e1763695571462-300x188.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"title": "When AI Meets Love | Fashion Knows No Age",
|
||||
"brief": "When AI Meets Love | Fashion Knows No Age Code-Create and Caritas St. Joseph Secondary School joined hands to bring creativity into the community through AiDA. Students used AI to design personalized outfits for the elderly — each piece filled with warmth and heartfelt care. From classroom to runway, from inspiration to action, AI is more than a tool of innovation — it’s a force that connects people. ‘The future of the future’ is being redefined by these young designers.",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_5366-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"title": "Creator Shares AiDA Design Insights At University Lecture",
|
||||
"brief": "Creator Shares AiDA Design Insights at University Lecture At Kyung Hee University’s ‘AI AnD Talk 2025’ in Korea, designer Jae shared his unique experience using AiDA in fashion creation. He demonstrated how AiDA helps break creative boundaries, enabling a more open dialogue between technology and fashion. The talk not only offered cutting-edge insights into AI-driven fashion but also inspired students to reimagine the future of design education and creative practice.",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/day01_0846-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"title": "Temasek Polytechnic Visits The Birthplace Of AiDA",
|
||||
"brief": "Temasek Polytechnic Visits the Birthplace of AiDA A delegation of students and faculty from Temasek Polytechnic, Singapore visited AiDLab, the research and development hub behind AiDA. During the visit, guests experienced the newly upgraded AiDA 3.1, along with several of AiDLab’s cutting-edge innovations — including 3D body scanning, digital human generation, and intelligent textile research, exploring how AI technology is reshaping the future of fashion design. 💡 To conclude the visit, Ms. Kim Wong, Founder of Code-Create, shared insights on AiDA’s vision and future direction, inspiring engaging discussions among students and faculty. Looking ahead, we aim to collaborate with more...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_0154-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"title": "AiDA Powers Cultural AI Exhibition In Hong Kong! ",
|
||||
"brief": "AiDA Powers Cultural AI Exhibition in Hong Kong! After nearly six months of collaboration, the Cultural AI project — powered by AiDA, our AI fashion design platform — has officially come to life in Hong Kong! In partnership with Temasek Polytechnic (Singapore), Hong Kong designers Elmer Ho and Liz Mak, and PhD researchers Zhu Jia Yu and Zhu Shu Min from PolyU, students explored how AiDA can transform cultural motifs into innovative fashion concepts and tangible designs. A big thank-you to everyone who joined the opening ceremony and to all our partners who made this milestone possible. Come visit the...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_4112-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"title": "KIFT Talk | Co-Creating Fashion With AiDA",
|
||||
"brief": "KIFT Talk | Co-Creating Fashion with AiDA At the Korea International Fashion Tech (KIFT) event, Korean designer Jae shared insights on the collaboration between BESFXXK and AiDA.He showcased how multiple BESFXXK collections were created with the support of AiDA, using the AI assistant to quickly transform inspiration into innovative and diverse designs.The talk highlighted the boundless potential of AI and designers co-creating, offering a glimpse into the future of fashion design.",
|
||||
"day": "30",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/cover-3-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"title": "AiDA In The Classroom|Global Designer Shares AI × Fashion In Practice",
|
||||
"brief": "AiDA in the Classroom|Global Designer Shares AI × Fashion in Practice A special moment from Kyung Hee University in Korea Designer Jae (Creative Director of BESFXXK) introduced AiDA and its R&D team, AiDLab, while sharing Code-Create’s vision for the integration of AI and the fashion ecosystem, as well as the applications of AI in fashion design. Through real case studies, he demonstrated how moodboards, prints, sketches, and final renderings can come together seamlessly, giving students a firsthand look at how AI enhances creativity.It’s inspiring to see the next generation of designers engaging with AI × fashion, opening new possibilities for the future...",
|
||||
"day": "26",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/Cover-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"title": "AiDA | Cultural Motifs × AI Fashion Experiment",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/09/250916-promotional-video.mp4 AiDA | Cultural Motifs × AI Fashion Experiment AiDA has teamed up with Singapore’s Temasek Polytechnic to launch a fashion project inspired by cultural motifs. Led by two experienced Hong Kong designers and PhD researchers from PolyU, students are guided to use the AiDA to transform cross-cultural elements into complete fashion collections.Through discussion and creation, AiDA makes ideas come to life faster and design more intuitively and efficiently. We can’t wait to see how young designers showcase global perspectives and cultural creativity with the power of AI! ",
|
||||
"day": "23",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/promotional-video-cover-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"title": "From Sketch To Garment|Made Possible With AiDA",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/09/英-Intertextile-SH.mov From Sketch to Garment|Made Possible with AiDA Designs generated with AiDA 3.1 have now been transformed into real garments. The future of fashion is right before your eyes. ",
|
||||
"day": "16",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/Video-cover-225x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"title": "AiDA 3.1 At Intertextile Shanghai|Upgraded Experience On-Site",
|
||||
"brief": "AiDA 3.1 at Intertextile Shanghai|Upgraded Experience On-Site Code-Create proudly presented the newly upgraded AiDA 3.1 at Intertextile Shanghai! ✨📍 At our booth, AiDA attracted an overwhelming response — with designers, students, and industry professionals eager to experience the platform first-hand.Visitors explored the complete design workflow, from moodboards and prints to sketches and final product renderings, while discovering the exciting new features of AiDA 3.1:✨ Sharper, higher-resolution outputs✨ Canvas workspace & Advanced Tools✨ Transform design drafts into lifelike model photos with adjustable poses✨ New product video generation, making designs more dynamic and immersiveAiDA 3.1 not only speeds up the design process...",
|
||||
"day": "09",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/cover-1-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"title": "Live From Seoul | AiDA Booth Is Buzzing!",
|
||||
"brief": "Live from Seoul | AiDA Booth is Buzzing! A quick share from Korea COEX, Seoul –This time, Code-Create brought our AI fashion design platform AiDA to Korea, and the booth was packed with excitement! Designers, students, and industry friends all came to explore AiDA, and we also showcased real garments created with AiDA designs. Everyone’s big question: Can AI really help designers bring ideas to life faster?The answer is yes!AiDA works seamlessly with a designer’s creative flow—from moodboards to prints, sketches, and final renderings—step by step through the whole process. And the physical outfits on display were the best proof: AI-driven creativity...",
|
||||
"day": "21",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/WhatsApp-Image-2025-08-20-at-15.21.45-225x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"title": "Preview In Seoul 2025",
|
||||
"brief": "Preview in Seoul 2025 Code-Create is heading to Seoul! We’re excited to join Preview in Seoul 2025 next week, bringing AiDA — our AI-powered fashion design platform — to Korea for the very first time. Come visit our booth and see how AiDA supports designers from concept to creation, and how AI is shaping the future of fashion. On 21 Aug, Code-Create founder & CEO Kim Wong, AiDLab’s Prof. Calvin Wong and BESFXXK Creative Director Jae Lim in a special session discussing how human creativity and AI can work together to elevate the fashion industry. And don’t miss our pitching...",
|
||||
"day": "15",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/poster-213x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"title": "Code-Create X YaleWomen Hong Kong | AI × Fashion × Design",
|
||||
"brief": "Code-Create x YaleWomen Hong Kong | AI × Fashion × Design On 30 July 2025, Code-Create Co-Founder & CEO Kim Wong was invited by YaleWomen Hong Kong to share her insights on the evolving intersection of fashion, AI, and entrepreneurship. Drawing on her extensive leadership experience at global fashion houses—including DFS USA, Lane Crawford, Burberry Asia, Brunello Cucinelli, and Versace Asia Pacific—Kim spoke about her journey from the fashion C-suite to academia, and now to the world of start-ups. She introduced AiDA 3.0, Code-Create’s AI-powered interactive design assistant, developed by AiDLab in collaboration with The Hong Kong Polytechnic University and...",
|
||||
"day": "30",
|
||||
"month": "Jul",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/WhatsApp-%E5%9C%96%E7%89%872025-08-0511.57.53_77f970a9-300x261.jpg",
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"title": "When AI Becomes Your Creative Partner: AiDA With Creators Worldwide",
|
||||
"brief": "When AI Becomes Your Creative Partner: AiDA with Creators Worldwide We are honored to support the 2025 SHE IS AI Fashion Awards as a proud partner—an international design competition centered on AI, fashion, and sustainable innovation.This prestigious event brings together designers and creatives from around the globe to explore AI as a “creative collaborator” across all stages of fashion design. Our AI platform, AiDA, serves as one of the key design tools, providing technical support to inspire and facilitate participants’ design development.From digital concepts to garment launches, and from virtual runways to global retail, every step of the design process...",
|
||||
"day": "27",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-24-at-10.14.51_e49379ab-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"title": "AiDA Makes A Splash At The Korean Society Of Fashion Design",
|
||||
"brief": "AiDA Makes a Splash at The Korean Society of Fashion Design At The Korean Society of Fashion Design, designer Jae introduced AiDA, an innovative design AI tool, to the audience. Jae detailed how AiDA leverages cutting-edge technology to boost design efficiency, saving designers time and allowing them to focus on creativity. Participants were impressed by AiDA’s ability to provide unlimited creative inspiration. They believe it not only stimulates fresh design concepts but also assists designers in transcending conventional design boundaries to discover new possibilities. AiDA’s powerful functions and potential excited everyone present and sparked intense discussion. AiDA is set to...",
|
||||
"day": "25",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/%E5%B0%81%E9%9D%A2-2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"title": "Intertextile 2025 Review | A Real Dialogue Between AI And Design",
|
||||
"brief": "A meaningful dialogue about AI and design inspiration unfolded at Shenzhen Convention Center, where AiDA connected with designers and brand founders from across China. What we shared:🔹 The complete AI workflow – from fabric selection to pattern generation🔹 How AI tools deliver both efficiency gains and creative stimulation Though the exhibition has ended, the conversation about design’s future continues. We extend our gratitude to:✓ Those who exchanged business cards with us✓ Everyone who waited in line to experience AiDA✓ Even those who simply glanced at our booth The story doesn’t end here.Explore more real-world AiDA case studies on our page...",
|
||||
"day": "11",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/%E5%B0%81%E9%9D%A2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"title": "Fashion Industry Hot Topic: Digital Innovation And AI Empowered Fashion",
|
||||
"brief": "Fashion Industry Hot Topic: Digital Innovation and AI Empowered Fashion Kim Wong, CEO of Code – Create, was recently invited to the “Digital Innovation Workshop”. During her presentation, Ms. Kim Wong introduced AiDA, an AI – powered design tool that is designer – led. She elaborated on how fashion businesses can harness this innovative technology to drive innovation. With its cutting – edge features, AiDA offers the fashion industry a more efficient and precise solution, enabling brands to stand out in the fiercely competitive market. In the roundtable discussion on “Avoiding Pitfalls in AI Implementation for the Consumer Goods Industry,”...",
|
||||
"day": "17",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-3-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"title": "UR:Fresh Take On Fashion AI — AiDA",
|
||||
"brief": "UR:Fresh Take on Fashion AI — AiDA Code – Create was honored to visit URBAN REVIVO (UR), kicking off a great dialogue on fashion and AI. Thanks to Invest HK for introducing Code – Create to UR. AiDA, the designer-led AI fashion design solution, amazed everyone. With advanced technology and designers’ ideas, it always brings new inspiration to the design team’s fashion creation process, breaking through traditional design constraints and showing everyone the infinite possibilities of fashion design with AI assistance. As AiDA keeps updating, it will continue to shine in the fashion world, expand its fashion – circle influence,...",
|
||||
"day": "15",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"title": "AiDA’s Sustainable Design Innovation At Daegu Preview 2025",
|
||||
"brief": "AiDA’s Sustainable Design Innovation at Daegu Preview 2025 At the 23rd International Textile Fair In PREVIEW IN DAEGU 2025, Korean designer Jae held a sharing session themed “Pursuing ‘zero-waste’ design through AI technology”. He emphasized that the AI design system —AiDA, with its powerful AI technology, is dedicated to optimizing the fashion design process. AiDA can save designers 60% of the time in the design phase and 20% in sampling, effectively reducing resource waste and driving the sustainable evolution of the fashion ecosystem.",
|
||||
"day": "13",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"title": "Congratulations To Code-Create For Being Named One Of Hong Kong’s Hottest Startups Of 2025",
|
||||
"brief": "Congratulations to Code-Create for being named one of Hong Kong’s Hottest Startups of 2025 Code-Create has made remarkable progress with its AI-powered design tool AiDA 3.0, which has transformed the fashion design process by offering quick and customizable collections while respecting the originality of artistic creation.. This recognition is a testament to the company’s hard work, innovation, and potential in the fashion industry. Code-Create continue to push boundaries and shape the future of fashion design with its cutting-edge AI technology. https://hongkongbusiness.hk/markets-investing/exclusive/hong-kongs-hottest-startups-2025",
|
||||
"day": "05",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/IMG_1749-2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"title": "AiDA Workshop At CBCC",
|
||||
"brief": "AiDA Workshop at CBCC The AiDA workshop sparked great interest among teacher and students, who experienced AI innovation firsthand. As an advanced AI-powered design tool, AiDA offers flexible design adjustments, powerful AIGC functions, and the ability to generate 8 looks in seconds—providing a fresh solution for fashion design. This workshop not only deepened participants’ understanding of AiDA’s design process but also demonstrated the powerful integration of education and AI technology, ushering in a new chapter in smart education.",
|
||||
"day": "29",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-3-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"title": "AI-Powered Design Curriculum: Pioneering Creativity In Fashion Education",
|
||||
"brief": "AI-Powered Design Curriculum: Pioneering Creativity in Fashion Education Creative Director of the Korean brand BESFXXK, Jae Hyuk Lim, partnered with Hongik University, Sejong University, and Paichai University to deliver innovative AiDA AI design courses. Through hands-on workshops, students gained practical experience in AI-assisted creation, blending cutting-edge fashion technology with academic learning to inspire innovation among Gen-Z designers. The curriculum covered AI applications in fashion design and explored how the AiDA system enhances design efficiency and creativity. Leveraging his industry expertise and academic background, Lim imparted cutting-edge fashion-tech knowledge, sparking students’ interest in the fusion of fashion and technology.",
|
||||
"day": "20",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/IMG_1290-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"title": "Code-Create X BIFU: Breakthrough In The AI Era",
|
||||
"brief": "Code-Create x BIFU: Breakthrough in the AI Era Fashion brand BIFU, founded by designer Xing Chen, has significantly enhanced its design efficiency and streamlined its creative process through collaboration with Code-Create, leveraging AI design assistant AiDA. By integrating inputs such as mood boards, fabric prints, color palettes, and sketches, AiDA rapidly generates original designs, allowing designers to focus on core creative tasks while maintaining a deep exploration of brand culture and craftsmanship. Since its establishment in 2013, BIFU has drawn inspiration from traditional Chinese culture, combining it with modern design aesthetics to create high-end ready-to-wear and accessories for both men...",
|
||||
"day": "16",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/coverpage-213x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"title": "South Korean Brand BESFXXK Leveraged AiDA To Create Its 2025 FW Ready-To-Wear Collection.",
|
||||
"brief": "South Korean brand BESFXXK leveraged AiDA to create its 2025 FW ready-to-wear collection. By optimizing the design process, AiDA significantly improved efficiency, reducing the time required from concept development to final product visualization by 60%. This advancement enables designers to focus more intently on core creative tasks, maximizing their expertise while enhancing the quality of design outcomes. Additionally, it frees up resources to prioritize innovative exploration and deeper creative engagement.",
|
||||
"day": "10",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-214x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"title": "AiDA: Accelerating Fashion Design Efficiency By Over 60%",
|
||||
"brief": "AiDA: Accelerating Fashion Design Efficiency by Over 60% Code-Create’s Co-Founder and CEO, Kim Wong, was interviewed by Hong Kong Business, explaining how the AI design assistant is revolutionizing fashion design by merging technology with creativity to enhance designers’ workflow. AiDA helps boost efficiency during design process by integrating over 500,000 sketches and current trends, generating innovative designs from keywords or themes input by designers. Designers maintain creative control through real-time modifications, ensuring their unique vision is preserved. Rather than replacing designers, AiDA empowers them by boosting design efficiency, freeing up 60% of their time for creative work. Code-Create envisions revitalizing...",
|
||||
"day": "08",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/WhatsApp-Image-2025-04-08-at-16.38.52_d42c070c-213x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"title": "Ms. Kim Wong Breaks Down How AI Is Reshaping Sustainable Fashion",
|
||||
"brief": "Ms. Kim Wong Breaks Down How AI Is Reshaping Sustainable Fashion Code-Create CEO Ms. Kim was invited to deliver a captivating sharing on “Sustainable Fashion Innovation” to SFT students at The Hong Kong Polytechnic University. Drawing from the core principles of “sustainability” and “innovation,” Kim explored how the integration of technology and design can drive the fashion industry toward greener transformation. She highlighted Code-Create’s AI-powered fashion design tool, AiDA, demonstrating how AI can optimize design processes, minimize resource waste, and unlock the tool’s potential in real-world applications. The class was very interactive, with students actively participating and showing lots of...",
|
||||
"day": "01",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-2-300x158.jpg",
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"title": "The AiDA Workshop Was Successfully Held In Shenzhen",
|
||||
"brief": "The AiDA Workshop was successfully held in Shenzhen The AiDA SZ Workshop attracted a wide range of professionals from the fashion industry. The atmosphere at the event was highly engaging and inspiring. Participants, many of whom were experiencing AiDA for the first time, were extremely excited as they explored its features. Through hands-on experience, they truly felt the immense potential of AI in fashion, as if they had unlocked a whole new world of possibilities. Fashion design tasks that used to be difficult now became easily achievable with AiDA, unlocking new trends in just minutes. AiDA has undoubtedly become the...",
|
||||
"day": "31",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-1-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"title": "AiDA X SFT Fashion AI Award Successfully Finished",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/03/0310-video-for-ceremony.mp4 AiDA x SFT Fashion AI Award Successfully Finished In the fast-paced world of fashion, innovation remains the driving force of progress. The recent conclusion of the AiDA x SFT Fashion AI Competition marks a key step in the industry’s digital transformation. The event drew talented students from Hong Kong Polytechnic University SFT students, who skillfully used AiDA throughout their creative process to deliver stunning creations. More than just clothing displays, these works represent the fusion of fashion and AI, pointing to the future of the industry. Award Winners:Grand Prize: Nina WaszakRunners-up: Kock Man Yan, Yuzhi Lai We believe AI-powered...",
|
||||
"day": "12",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/Image_20250507135632-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"title": "Feminine Power: Ms. Kim Wong’s Journey In Fashion And AI",
|
||||
"brief": "Feminine Power: Ms. Kim Wong’s Journey in Fashion and AI In a recent interview with the Hong Kong Ta Kung Pao, Ms. Kim shared her views and future expectations on AI fashion. With unique vision and courage, Kim moved from traditional fashion to AI fashion. As co-founder and CEO of Code – Create, she is a key driver of the global fashion ecosystem’s transformation. Ms. Kim specially mentioned AiDA, the world’s first fashion AI solution led by designers’ original inspiration. AiDA enables designers to collaborate with AI to quickly create diverse original designs. It can shorten the design time from...",
|
||||
"day": "07",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/WhatsApp-Image-2025-03-11-at-16.20.13_44e39cfe-181x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"title": "Achieving Excellence In Design Within An Hour",
|
||||
"brief": "Achieving Excellence in Design within an Hour! Students from PolyU School of Fashion and Textiles (SFT) delivered an impressive series of design works at the AiDA Workshop, all within a mere 60 minutes. AiDA has boosted design process efficiency by over 60%, enhancing overall design efficiency across the board. The newly upgraded AiDA has exceeded our expectations. This is more than just a tool upgrade—it represents a paradigm shift in design productivity.",
|
||||
"day": "20",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/%E5%9C%96%E7%89%87_20250303200046-212x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"title": "Brainstorm With AI",
|
||||
"brief": "Brainstorm with AI!! Students from Caritas St. Joseph Secondary School in Hong Kong recently embarked on an AI-powered design adventure with the designer-led AI tool “AiDA.” Excitement filled the air as students eagerly engaged with the tool, quickly mastering its functions under guidance. They transformed their imaginative ideas into stunning designs, demonstrating remarkable learning ability and creative potential in the realm of AI.During the event, students experienced the three core strengths of AiDA: creativity, efficiency, and sustainability. AiDA can instantly convert text descriptions into eye-catching designs, and designers can easily edit and adjust styles to optimize their creations. This significantly...",
|
||||
"day": "19",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/%E5%9C%96%E7%89%87_20250228085345-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"title": "CEO Of Code-Create Kim Wong’s Inspiring Talk At Henrietta Secondary School",
|
||||
"brief": "CEO of Code-Create Kim Wong’s Inspiring Talk at Henrietta Secondary School — You can chase your dreams at any age! At Henrietta Secondary School, Code-Create’s CEO, Ms. Kim Wong brought a truly enriching sharing session to the students. She opened up to the students, presenting her extraordinary life story. From the initial sprouting of dreams to now standing at the forefront of fashion and technology, her journey unfolds like an inspiring movie, moving every student present. One of the highlights of Ms. Kim Wong’s talk was AiDA, the world’s first designer-led AI design tool. The tool’s straightforward design process and...",
|
||||
"day": "06",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/01/%E6%92%A0%EE%BC%BF%EE%B2%84-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"title": "Announcing The Finalists For AiDA Fashion AI Award",
|
||||
"brief": "Announcing the Finalists for AiDA Fashion AI Award! We are thrilled to announce the top 10 finalists!!! These talented individuals have showcased exceptional creativity and innovation in fashion design and will use AiDA to create their collections. Here are the finalists: Yuzhi Lai Yan Chi Kwan, Jimmy Cheung Tsz Ching, Bobo Nina Waszak WOO SIN YU, Lia Yiu Ching Yau, Emma YAU KA HEI Xu Lulu Kock Man Yan XIEYAUKIT Congratulations to all the finalists! We look forward to an exciting competition and wish each of finalists the best of luck!",
|
||||
"day": "30",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/finalists-225x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"title": "【2024 FABI KOREA Conference】:Revolutionizing Fashion Design With AiDA",
|
||||
"brief": "【2024 FABI KOREA Conference】:Revolutionizing Fashion Design with AiDA At the 2024 FABI Conference, AiDA, an AI solution for fashion design, was the star of the show. Kim Wong, CEO of Code-Create, delivered a powerful presentation highlighted AiDA’s transformative impact on the fashion industry. The enthusiastic reception at the conference confirmed AiDA’s popularity and its pivotal role in the future of fashion, where AI meets creativity to redefine the industry’s standards. The 2024 FABI Conference was more than just an event, it was a platform for showcasing the future of fashion. AiDA’s presence there was a clear indication of the direction the...",
|
||||
"day": "07",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/%E5%B0%81%E9%9D%A2-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"title": "Code-Create’s CEO Kim Wong Honored With Best Paper Award At 2024 International Fashion Conference",
|
||||
"brief": "Code-Create’s CEO Kim Wong Honored with Best Paper Award at 2024 International Fashion Conference We are thrilled to celebrate the CEO of Code-Create, Kim Wong’s outstanding achievement at the 2024 International Conference hosted by the Korean Society of Fashion Business! Kim was honored with the Best Paper Award for her compelling presentation, “Revitalize Fashion Ecosystem through AI – Future of fashion design process.” This presentation showcased the transformative power of AiDA, Code-Create’s designer-led AI tool, which is redefining the fashion design process by providing a platform that understands and enhances the creative vision of its users. This recognition is a...",
|
||||
"day": "07",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/IMG_8903-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"title": "Hanyang University Meets AiDA",
|
||||
"brief": "Hanyang University Meets AiDA: A Fusion of Creativity and Technology During this workshop, we led the faculty and students of Hanyang University on an exploration of the mysteries of AI, experiencing the interaction with the design assistant AiDA. Everyone were truly amazed by AiDA’s unexpected creativity and the dynamic interactions it facilitated. The students’ works revealed new trends in the fashion world. We look forward to more exchanges and cooperation with Hanyang University in the future. Let’s all anticipate our next gathering!",
|
||||
"day": "28",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/%E6%92%A0%EE%BC%BF%EE%B2%84-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"title": "AiDA Workshop",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2024/11/AiDA-X-RCA-workshop-1.mov Despite the typhoon, our enthusiasm couldn’t be dampened! The event was a massive success, filled with engagement, interaction, and valuable insights! Deep appreciation goes to the distinguished speakers and coaches:Prof. Calvin Wong, CEO of AiDLab & Co-founder of Code-Create — Hong KongZowie and Anne from the Royal College of Art — UKJae from BESFXXK — South KoreaWillis from Zavvyave — Hong KongKitty, Aemika from SFT, PolyU — Hong Kong These experts shared their remarkable AiDA experiences and coached attendees through their AiDA journey! Fashion design instructors and students from SFT, DI, and Youth College were amazed by AiDA’s cutting-edge...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/11/%E6%92%A0%EE%BC%BF%EE%B2%84-300x201.jpg",
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"title": "AiDA X SFT AI Fashion Award 2024",
|
||||
"brief": "AiDA X SFT AI Fashion Award 2024 With the aim of inspiring students to innovate in fashion design using AI, Code-Create and The Hong Kong Polytechnic University School of Fashion and Textiles (SFT) have jointly launched the ‘AiDA X SFT AI Fashion Award 2024’. This competition provides students with valuable practical AiDA experience, laying the foundation for the future fashion design industry and positioning them as pioneers in AI fashion.The competition is open to all SFT students, with the winners having the chance to win cash prizes (up to 20,000 HKD), internship opportunity at BESFXXK (will work with the renowned...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/11/3611731651515_.pic_hd-225x300.png",
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"title": "CentreStage 2024",
|
||||
"brief": "At CentreStage, AiDA has captured the attention of many professionals from the fashion industry...",
|
||||
"day": "03",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/CentreStage-2024-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"title": "Press Conference: Code-Create Secures Investment From Eschange Capital",
|
||||
"brief": "The innovative AI fashion design platform AiDA, is leading the fashion industry into a new phase of digital transformation. Code-Create announced yesterday that it has secured strategic ...",
|
||||
"day": "02",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Code-Create-Secures-Investment-from-Eschange-Capital-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"title": "“Hong Kong China Night” In Paris",
|
||||
"brief": "In Paris, the \"Culture X AI 2024-2025\" event was meticulously planned by the Laboratory for Artificial Intelligence in Design(AiDLab)...",
|
||||
"day": "06",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Hong-Kong-China-Night-in-Paris-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"title": "Culture X Al 2024-2025: Culture And Future Mode",
|
||||
"brief": "Culture X Al: Kan Tai Keung X AiDLab X HK Fashion Designers Show is finally here...",
|
||||
"day": "17",
|
||||
"month": "Jul",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Culture-and-Future-Mode-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"title": "Fashion X AI 2022-2023: International Symposium",
|
||||
"brief": "This international symposium will bring together the world's leading...",
|
||||
"day": "17",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_international_symposium-300x150.jpg",
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"title": "Fashion X AI 2022-2023: Touring Exhibitions",
|
||||
"brief": "The upcoming touring exhibitions feature a series of the latest...",
|
||||
"day": "13",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_touring_exhibitions-300x150.jpg",
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "International Seminar On “AI In Fashion Marketing Research”",
|
||||
"brief": "Technology is playing an important role in the design...",
|
||||
"day": "18",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/international_seminar_banner-300x210.jpg",
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"title": "Fashion X AI 2022-2023: Fashion Show & Forum",
|
||||
"brief": "AiDLab is honoured to hold the region’s first programme...",
|
||||
"day": "19",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2021/12/fashionai_thumb_fashion_show-300x150.jpg",
|
||||
},
|
||||
{
|
||||
"id": 1,
|
||||
"title": "CENTRESTAGE",
|
||||
"brief": "Code Create has joint a seminar at CENTRESTAGE with AiDLab...",
|
||||
"day": "20",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_cover-1-300x150.jpg",
|
||||
}
|
||||
]
|
||||
466
src/pages/events/list-zh-tw.js
Normal file
466
src/pages/events/list-zh-tw.js
Normal file
@@ -0,0 +1,466 @@
|
||||
export default [
|
||||
{
|
||||
"id": 58,
|
||||
"title": "很榮幸成為 阿里巴巴 JUMPSTARTER 2026 Top 30|Code-Create",
|
||||
"brief": "很榮幸成為 阿里巴巴 JU...",
|
||||
"day": "30",
|
||||
"month": "1 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/Jumpstarter-horizontal-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"title": "匠心精神,開啟傳統與科技時尚的新可能\n",
|
||||
"brief": "匠心精神,開啟傳統與科技時...",
|
||||
"day": "09",
|
||||
"month": "2 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/02/%E5%BE%AE%E4%BF%A1%E5%9C%96%E7%89%87_2026-02-02_121646_493-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"title": "等等,AiDA 還能用來做時裝週的陳列設計?",
|
||||
"brief": "等等,AiDA 還能用來做...",
|
||||
"day": "04",
|
||||
"month": "3 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/03/IMG_4901-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"title": "Code-Create 榮獲阿里巴巴 JUMPSTARTER 2026 人氣 Top 5",
|
||||
"brief": "Code-Create 榮...",
|
||||
"day": "20",
|
||||
"month": "3 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/03/Code-Create-Limited-300x201.jpg",
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"title": "2026 — 您的全球設計舞台",
|
||||
"brief": "2026 — 您的全球設計...",
|
||||
"day": "22",
|
||||
"month": "4 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/04/award_qrcode_en-240x300.gif",
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"title": "AiDA 上鳳凰衛視了! 花絮放送🎉",
|
||||
"brief": "AiDA 上鳳凰衛視了! ...",
|
||||
"day": "11",
|
||||
"month": "5 月",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/05/45e19bf9012eac5071ace52896e4f53f-300x166.png",
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"title": "Across Disciplines · Across Borders|AiDA Makes Design Accessible To All",
|
||||
"brief": "Across Disciplines · Across Borders|AiDA Makes Design Accessible to All During a...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_4524-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"title": "Stepping Into PolyU, Connecting The Future",
|
||||
"brief": "Stepping into PolyU, Connecting the Future At Code-Create, we’ve always believed that education...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_7777-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"title": "AiDA Empowering Fashion Design Education At HK SFU",
|
||||
"brief": "AiDA Empowering Fashion Design Education at HK SFU The Code-Create team recently visited...",
|
||||
"day": "28",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_2710-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"title": "Where Fashion Leaders Meet | FAHK 2025",
|
||||
"brief": "Where Fashion Leaders Meet | FAHK 2025 At Fashion Asia Hong Kong 2025,...",
|
||||
"day": "18",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/12/IMG_8466-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"title": "AiDA × Hanyang University|A Deep Dive Into AI-Driven Fashion Design",
|
||||
"brief": "AiDA × Hanyang University|A Deep Dive into AI-Driven Fashion Design PhD students from...",
|
||||
"day": "01",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/12/IMG_8320-1-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"title": "Korea’s Chonnam National University Is Using AiDA!",
|
||||
"brief": "Korea’s Chonnam National University Is Using AiDA! Students and faculty from Chonnam National...",
|
||||
"day": "21",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_7909-scaled-e1763695571462-300x188.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"title": "When AI Meets Love | Fashion Knows No Age",
|
||||
"brief": "When AI Meets Love | Fashion Knows No Age Code-Create and Caritas St. Joseph Secondary School joined hands to bring creativity into the community through AiDA. Students used AI to design personalized outfits for the elderly — each piece filled with warmth and heartfelt care. From classroom to runway, from inspiration to action, AI is more than a tool of innovation — it’s a force that connects people. ‘The future of the future’ is being redefined by these young designers.",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_5366-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"title": "Creator Shares AiDA Design Insights At University Lecture",
|
||||
"brief": "Creator Shares AiDA Design Insights at University Lecture At Kyung Hee University’s ‘AI AnD Talk 2025’ in Korea, designer Jae shared his unique experience using AiDA in fashion creation. He demonstrated how AiDA helps break creative boundaries, enabling a more open dialogue between technology and fashion. The talk not only offered cutting-edge insights into AI-driven fashion but also inspired students to reimagine the future of design education and creative practice.",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/day01_0846-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"title": "Temasek Polytechnic Visits The Birthplace Of AiDA",
|
||||
"brief": "Temasek Polytechnic Visits the Birthplace of AiDA A delegation of students and faculty from Temasek Polytechnic, Singapore visited AiDLab, the research and development hub behind AiDA. During the visit, guests experienced the newly upgraded AiDA 3.1, along with several of AiDLab’s cutting-edge innovations — including 3D body scanning, digital human generation, and intelligent textile research, exploring how AI technology is reshaping the future of fashion design. 💡 To conclude the visit, Ms. Kim Wong, Founder of Code-Create, shared insights on AiDA’s vision and future direction, inspiring engaging discussions among students and faculty. Looking ahead, we aim to collaborate with more...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_0154-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"title": "AiDA Powers Cultural AI Exhibition In Hong Kong! ",
|
||||
"brief": "AiDA Powers Cultural AI Exhibition in Hong Kong! After nearly six months of collaboration, the Cultural AI project — powered by AiDA, our AI fashion design platform — has officially come to life in Hong Kong! In partnership with Temasek Polytechnic (Singapore), Hong Kong designers Elmer Ho and Liz Mak, and PhD researchers Zhu Jia Yu and Zhu Shu Min from PolyU, students explored how AiDA can transform cultural motifs into innovative fashion concepts and tangible designs. A big thank-you to everyone who joined the opening ceremony and to all our partners who made this milestone possible. Come visit the...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/11/IMG_4112-300x225.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"title": "KIFT Talk | Co-Creating Fashion With AiDA",
|
||||
"brief": "KIFT Talk | Co-Creating Fashion with AiDA At the Korea International Fashion Tech (KIFT) event, Korean designer Jae shared insights on the collaboration between BESFXXK and AiDA.He showcased how multiple BESFXXK collections were created with the support of AiDA, using the AI assistant to quickly transform inspiration into innovative and diverse designs.The talk highlighted the boundless potential of AI and designers co-creating, offering a glimpse into the future of fashion design.",
|
||||
"day": "30",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/cover-3-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"title": "AiDA In The Classroom|Global Designer Shares AI × Fashion In Practice",
|
||||
"brief": "AiDA in the Classroom|Global Designer Shares AI × Fashion in Practice A special moment from Kyung Hee University in Korea Designer Jae (Creative Director of BESFXXK) introduced AiDA and its R&D team, AiDLab, while sharing Code-Create’s vision for the integration of AI and the fashion ecosystem, as well as the applications of AI in fashion design. Through real case studies, he demonstrated how moodboards, prints, sketches, and final renderings can come together seamlessly, giving students a firsthand look at how AI enhances creativity.It’s inspiring to see the next generation of designers engaging with AI × fashion, opening new possibilities for the future...",
|
||||
"day": "26",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/Cover-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"title": "AiDA | Cultural Motifs × AI Fashion Experiment",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/09/250916-promotional-video.mp4 AiDA | Cultural Motifs × AI Fashion Experiment AiDA has teamed up with Singapore’s Temasek Polytechnic to launch a fashion project inspired by cultural motifs. Led by two experienced Hong Kong designers and PhD researchers from PolyU, students are guided to use the AiDA to transform cross-cultural elements into complete fashion collections.Through discussion and creation, AiDA makes ideas come to life faster and design more intuitively and efficiently. We can’t wait to see how young designers showcase global perspectives and cultural creativity with the power of AI! ",
|
||||
"day": "23",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/promotional-video-cover-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"title": "From Sketch To Garment|Made Possible With AiDA",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/09/英-Intertextile-SH.mov From Sketch to Garment|Made Possible with AiDA Designs generated with AiDA 3.1 have now been transformed into real garments. The future of fashion is right before your eyes. ",
|
||||
"day": "16",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/Video-cover-225x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"title": "AiDA 3.1 At Intertextile Shanghai|Upgraded Experience On-Site",
|
||||
"brief": "AiDA 3.1 at Intertextile Shanghai|Upgraded Experience On-Site Code-Create proudly presented the newly upgraded AiDA 3.1 at Intertextile Shanghai! ✨📍 At our booth, AiDA attracted an overwhelming response — with designers, students, and industry professionals eager to experience the platform first-hand.Visitors explored the complete design workflow, from moodboards and prints to sketches and final product renderings, while discovering the exciting new features of AiDA 3.1:✨ Sharper, higher-resolution outputs✨ Canvas workspace & Advanced Tools✨ Transform design drafts into lifelike model photos with adjustable poses✨ New product video generation, making designs more dynamic and immersiveAiDA 3.1 not only speeds up the design process...",
|
||||
"day": "09",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/09/cover-1-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"title": "Live From Seoul | AiDA Booth Is Buzzing!",
|
||||
"brief": "Live from Seoul | AiDA Booth is Buzzing! A quick share from Korea COEX, Seoul –This time, Code-Create brought our AI fashion design platform AiDA to Korea, and the booth was packed with excitement! Designers, students, and industry friends all came to explore AiDA, and we also showcased real garments created with AiDA designs. Everyone’s big question: Can AI really help designers bring ideas to life faster?The answer is yes!AiDA works seamlessly with a designer’s creative flow—from moodboards to prints, sketches, and final renderings—step by step through the whole process. And the physical outfits on display were the best proof: AI-driven creativity...",
|
||||
"day": "21",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/WhatsApp-Image-2025-08-20-at-15.21.45-225x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"title": "Preview In Seoul 2025",
|
||||
"brief": "Preview in Seoul 2025 Code-Create is heading to Seoul! We’re excited to join Preview in Seoul 2025 next week, bringing AiDA — our AI-powered fashion design platform — to Korea for the very first time. Come visit our booth and see how AiDA supports designers from concept to creation, and how AI is shaping the future of fashion. On 21 Aug, Code-Create founder & CEO Kim Wong, AiDLab’s Prof. Calvin Wong and BESFXXK Creative Director Jae Lim in a special session discussing how human creativity and AI can work together to elevate the fashion industry. And don’t miss our pitching...",
|
||||
"day": "15",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/poster-213x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"title": "Code-Create X YaleWomen Hong Kong | AI × Fashion × Design",
|
||||
"brief": "Code-Create x YaleWomen Hong Kong | AI × Fashion × Design On 30 July 2025, Code-Create Co-Founder & CEO Kim Wong was invited by YaleWomen Hong Kong to share her insights on the evolving intersection of fashion, AI, and entrepreneurship. Drawing on her extensive leadership experience at global fashion houses—including DFS USA, Lane Crawford, Burberry Asia, Brunello Cucinelli, and Versace Asia Pacific—Kim spoke about her journey from the fashion C-suite to academia, and now to the world of start-ups. She introduced AiDA 3.0, Code-Create’s AI-powered interactive design assistant, developed by AiDLab in collaboration with The Hong Kong Polytechnic University and...",
|
||||
"day": "30",
|
||||
"month": "Jul",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/WhatsApp-%E5%9C%96%E7%89%872025-08-0511.57.53_77f970a9-300x261.jpg",
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"title": "When AI Becomes Your Creative Partner: AiDA With Creators Worldwide",
|
||||
"brief": "When AI Becomes Your Creative Partner: AiDA with Creators Worldwide We are honored to support the 2025 SHE IS AI Fashion Awards as a proud partner—an international design competition centered on AI, fashion, and sustainable innovation.This prestigious event brings together designers and creatives from around the globe to explore AI as a “creative collaborator” across all stages of fashion design. Our AI platform, AiDA, serves as one of the key design tools, providing technical support to inspire and facilitate participants’ design development.From digital concepts to garment launches, and from virtual runways to global retail, every step of the design process...",
|
||||
"day": "27",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-24-at-10.14.51_e49379ab-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"title": "AiDA Makes A Splash At The Korean Society Of Fashion Design",
|
||||
"brief": "AiDA Makes a Splash at The Korean Society of Fashion Design At The Korean Society of Fashion Design, designer Jae introduced AiDA, an innovative design AI tool, to the audience. Jae detailed how AiDA leverages cutting-edge technology to boost design efficiency, saving designers time and allowing them to focus on creativity. Participants were impressed by AiDA’s ability to provide unlimited creative inspiration. They believe it not only stimulates fresh design concepts but also assists designers in transcending conventional design boundaries to discover new possibilities. AiDA’s powerful functions and potential excited everyone present and sparked intense discussion. AiDA is set to...",
|
||||
"day": "25",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/%E5%B0%81%E9%9D%A2-2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"title": "Intertextile 2025 Review | A Real Dialogue Between AI And Design",
|
||||
"brief": "A meaningful dialogue about AI and design inspiration unfolded at Shenzhen Convention Center, where AiDA connected with designers and brand founders from across China. What we shared:🔹 The complete AI workflow – from fabric selection to pattern generation🔹 How AI tools deliver both efficiency gains and creative stimulation Though the exhibition has ended, the conversation about design’s future continues. We extend our gratitude to:✓ Those who exchanged business cards with us✓ Everyone who waited in line to experience AiDA✓ Even those who simply glanced at our booth The story doesn’t end here.Explore more real-world AiDA case studies on our page...",
|
||||
"day": "11",
|
||||
"month": "Jun",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/06/%E5%B0%81%E9%9D%A2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"title": "Fashion Industry Hot Topic: Digital Innovation And AI Empowered Fashion",
|
||||
"brief": "Fashion Industry Hot Topic: Digital Innovation and AI Empowered Fashion Kim Wong, CEO of Code – Create, was recently invited to the “Digital Innovation Workshop”. During her presentation, Ms. Kim Wong introduced AiDA, an AI – powered design tool that is designer – led. She elaborated on how fashion businesses can harness this innovative technology to drive innovation. With its cutting – edge features, AiDA offers the fashion industry a more efficient and precise solution, enabling brands to stand out in the fiercely competitive market. In the roundtable discussion on “Avoiding Pitfalls in AI Implementation for the Consumer Goods Industry,”...",
|
||||
"day": "17",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-3-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"title": "UR:Fresh Take On Fashion AI — AiDA",
|
||||
"brief": "UR:Fresh Take on Fashion AI — AiDA Code – Create was honored to visit URBAN REVIVO (UR), kicking off a great dialogue on fashion and AI. Thanks to Invest HK for introducing Code – Create to UR. AiDA, the designer-led AI fashion design solution, amazed everyone. With advanced technology and designers’ ideas, it always brings new inspiration to the design team’s fashion creation process, breaking through traditional design constraints and showing everyone the infinite possibilities of fashion design with AI assistance. As AiDA keeps updating, it will continue to shine in the fashion world, expand its fashion – circle influence,...",
|
||||
"day": "15",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"title": "AiDA’s Sustainable Design Innovation At Daegu Preview 2025",
|
||||
"brief": "AiDA’s Sustainable Design Innovation at Daegu Preview 2025 At the 23rd International Textile Fair In PREVIEW IN DAEGU 2025, Korean designer Jae held a sharing session themed “Pursuing ‘zero-waste’ design through AI technology”. He emphasized that the AI design system —AiDA, with its powerful AI technology, is dedicated to optimizing the fashion design process. AiDA can save designers 60% of the time in the design phase and 20% in sampling, effectively reducing resource waste and driving the sustainable evolution of the fashion ecosystem.",
|
||||
"day": "13",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/%E5%B0%81%E9%9D%A2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"title": "Congratulations To Code-Create For Being Named One Of Hong Kong’s Hottest Startups Of 2025",
|
||||
"brief": "Congratulations to Code-Create for being named one of Hong Kong’s Hottest Startups of 2025 Code-Create has made remarkable progress with its AI-powered design tool AiDA 3.0, which has transformed the fashion design process by offering quick and customizable collections while respecting the originality of artistic creation.. This recognition is a testament to the company’s hard work, innovation, and potential in the fashion industry. Code-Create continue to push boundaries and shape the future of fashion design with its cutting-edge AI technology. https://hongkongbusiness.hk/markets-investing/exclusive/hong-kongs-hottest-startups-2025",
|
||||
"day": "05",
|
||||
"month": "May",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/05/IMG_1749-2-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"title": "AiDA Workshop At CBCC",
|
||||
"brief": "AiDA Workshop at CBCC The AiDA workshop sparked great interest among teacher and students, who experienced AI innovation firsthand. As an advanced AI-powered design tool, AiDA offers flexible design adjustments, powerful AIGC functions, and the ability to generate 8 looks in seconds—providing a fresh solution for fashion design. This workshop not only deepened participants’ understanding of AiDA’s design process but also demonstrated the powerful integration of education and AI technology, ushering in a new chapter in smart education.",
|
||||
"day": "29",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-3-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"title": "AI-Powered Design Curriculum: Pioneering Creativity In Fashion Education",
|
||||
"brief": "AI-Powered Design Curriculum: Pioneering Creativity in Fashion Education Creative Director of the Korean brand BESFXXK, Jae Hyuk Lim, partnered with Hongik University, Sejong University, and Paichai University to deliver innovative AiDA AI design courses. Through hands-on workshops, students gained practical experience in AI-assisted creation, blending cutting-edge fashion technology with academic learning to inspire innovation among Gen-Z designers. The curriculum covered AI applications in fashion design and explored how the AiDA system enhances design efficiency and creativity. Leveraging his industry expertise and academic background, Lim imparted cutting-edge fashion-tech knowledge, sparking students’ interest in the fusion of fashion and technology.",
|
||||
"day": "20",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/IMG_1290-300x169.jpg",
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"title": "Code-Create X BIFU: Breakthrough In The AI Era",
|
||||
"brief": "Code-Create x BIFU: Breakthrough in the AI Era Fashion brand BIFU, founded by designer Xing Chen, has significantly enhanced its design efficiency and streamlined its creative process through collaboration with Code-Create, leveraging AI design assistant AiDA. By integrating inputs such as mood boards, fabric prints, color palettes, and sketches, AiDA rapidly generates original designs, allowing designers to focus on core creative tasks while maintaining a deep exploration of brand culture and craftsmanship. Since its establishment in 2013, BIFU has drawn inspiration from traditional Chinese culture, combining it with modern design aesthetics to create high-end ready-to-wear and accessories for both men...",
|
||||
"day": "16",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/coverpage-213x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"title": "South Korean Brand BESFXXK Leveraged AiDA To Create Its 2025 FW Ready-To-Wear Collection.",
|
||||
"brief": "South Korean brand BESFXXK leveraged AiDA to create its 2025 FW ready-to-wear collection. By optimizing the design process, AiDA significantly improved efficiency, reducing the time required from concept development to final product visualization by 60%. This advancement enables designers to focus more intently on core creative tasks, maximizing their expertise while enhancing the quality of design outcomes. Additionally, it frees up resources to prioritize innovative exploration and deeper creative engagement.",
|
||||
"day": "10",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-214x300.jpeg",
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"title": "AiDA: Accelerating Fashion Design Efficiency By Over 60%",
|
||||
"brief": "AiDA: Accelerating Fashion Design Efficiency by Over 60% Code-Create’s Co-Founder and CEO, Kim Wong, was interviewed by Hong Kong Business, explaining how the AI design assistant is revolutionizing fashion design by merging technology with creativity to enhance designers’ workflow. AiDA helps boost efficiency during design process by integrating over 500,000 sketches and current trends, generating innovative designs from keywords or themes input by designers. Designers maintain creative control through real-time modifications, ensuring their unique vision is preserved. Rather than replacing designers, AiDA empowers them by boosting design efficiency, freeing up 60% of their time for creative work. Code-Create envisions revitalizing...",
|
||||
"day": "08",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/WhatsApp-Image-2025-04-08-at-16.38.52_d42c070c-213x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"title": "Ms. Kim Wong Breaks Down How AI Is Reshaping Sustainable Fashion",
|
||||
"brief": "Ms. Kim Wong Breaks Down How AI Is Reshaping Sustainable Fashion Code-Create CEO Ms. Kim was invited to deliver a captivating sharing on “Sustainable Fashion Innovation” to SFT students at The Hong Kong Polytechnic University. Drawing from the core principles of “sustainability” and “innovation,” Kim explored how the integration of technology and design can drive the fashion industry toward greener transformation. She highlighted Code-Create’s AI-powered fashion design tool, AiDA, demonstrating how AI can optimize design processes, minimize resource waste, and unlock the tool’s potential in real-world applications. The class was very interactive, with students actively participating and showing lots of...",
|
||||
"day": "01",
|
||||
"month": "Apr",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-2-300x158.jpg",
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"title": "The AiDA Workshop Was Successfully Held In Shenzhen",
|
||||
"brief": "The AiDA Workshop was successfully held in Shenzhen The AiDA SZ Workshop attracted a wide range of professionals from the fashion industry. The atmosphere at the event was highly engaging and inspiring. Participants, many of whom were experiencing AiDA for the first time, were extremely excited as they explored its features. Through hands-on experience, they truly felt the immense potential of AI in fashion, as if they had unlocked a whole new world of possibilities. Fashion design tasks that used to be difficult now became easily achievable with AiDA, unlocking new trends in just minutes. AiDA has undoubtedly become the...",
|
||||
"day": "31",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/04/%E5%B0%81%E9%9D%A2-1-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"title": "AiDA X SFT Fashion AI Award Successfully Finished",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2025/03/0310-video-for-ceremony.mp4 AiDA x SFT Fashion AI Award Successfully Finished In the fast-paced world of fashion, innovation remains the driving force of progress. The recent conclusion of the AiDA x SFT Fashion AI Competition marks a key step in the industry’s digital transformation. The event drew talented students from Hong Kong Polytechnic University SFT students, who skillfully used AiDA throughout their creative process to deliver stunning creations. More than just clothing displays, these works represent the fusion of fashion and AI, pointing to the future of the industry. Award Winners:Grand Prize: Nina WaszakRunners-up: Kock Man Yan, Yuzhi Lai We believe AI-powered...",
|
||||
"day": "12",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/Image_20250507135632-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"title": "Feminine Power: Ms. Kim Wong’s Journey In Fashion And AI",
|
||||
"brief": "Feminine Power: Ms. Kim Wong’s Journey in Fashion and AI In a recent interview with the Hong Kong Ta Kung Pao, Ms. Kim shared her views and future expectations on AI fashion. With unique vision and courage, Kim moved from traditional fashion to AI fashion. As co-founder and CEO of Code – Create, she is a key driver of the global fashion ecosystem’s transformation. Ms. Kim specially mentioned AiDA, the world’s first fashion AI solution led by designers’ original inspiration. AiDA enables designers to collaborate with AI to quickly create diverse original designs. It can shorten the design time from...",
|
||||
"day": "07",
|
||||
"month": "Mar",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/WhatsApp-Image-2025-03-11-at-16.20.13_44e39cfe-181x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"title": "Achieving Excellence In Design Within An Hour",
|
||||
"brief": "Achieving Excellence in Design within an Hour! Students from PolyU School of Fashion and Textiles (SFT) delivered an impressive series of design works at the AiDA Workshop, all within a mere 60 minutes. AiDA has boosted design process efficiency by over 60%, enhancing overall design efficiency across the board. The newly upgraded AiDA has exceeded our expectations. This is more than just a tool upgrade—it represents a paradigm shift in design productivity.",
|
||||
"day": "20",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/%E5%9C%96%E7%89%87_20250303200046-212x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"title": "Brainstorm With AI",
|
||||
"brief": "Brainstorm with AI!! Students from Caritas St. Joseph Secondary School in Hong Kong recently embarked on an AI-powered design adventure with the designer-led AI tool “AiDA.” Excitement filled the air as students eagerly engaged with the tool, quickly mastering its functions under guidance. They transformed their imaginative ideas into stunning designs, demonstrating remarkable learning ability and creative potential in the realm of AI.During the event, students experienced the three core strengths of AiDA: creativity, efficiency, and sustainability. AiDA can instantly convert text descriptions into eye-catching designs, and designers can easily edit and adjust styles to optimize their creations. This significantly...",
|
||||
"day": "19",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/03/%E5%9C%96%E7%89%87_20250228085345-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"title": "CEO Of Code-Create Kim Wong’s Inspiring Talk At Henrietta Secondary School",
|
||||
"brief": "CEO of Code-Create Kim Wong’s Inspiring Talk at Henrietta Secondary School — You can chase your dreams at any age! At Henrietta Secondary School, Code-Create’s CEO, Ms. Kim Wong brought a truly enriching sharing session to the students. She opened up to the students, presenting her extraordinary life story. From the initial sprouting of dreams to now standing at the forefront of fashion and technology, her journey unfolds like an inspiring movie, moving every student present. One of the highlights of Ms. Kim Wong’s talk was AiDA, the world’s first designer-led AI design tool. The tool’s straightforward design process and...",
|
||||
"day": "06",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/01/%E6%92%A0%EE%BC%BF%EE%B2%84-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"title": "Announcing The Finalists For AiDA Fashion AI Award",
|
||||
"brief": "Announcing the Finalists for AiDA Fashion AI Award! We are thrilled to announce the top 10 finalists!!! These talented individuals have showcased exceptional creativity and innovation in fashion design and will use AiDA to create their collections. Here are the finalists: Yuzhi Lai Yan Chi Kwan, Jimmy Cheung Tsz Ching, Bobo Nina Waszak WOO SIN YU, Lia Yiu Ching Yau, Emma YAU KA HEI Xu Lulu Kock Man Yan XIEYAUKIT Congratulations to all the finalists! We look forward to an exciting competition and wish each of finalists the best of luck!",
|
||||
"day": "30",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/finalists-225x300.jpg",
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"title": "【2024 FABI KOREA Conference】:Revolutionizing Fashion Design With AiDA",
|
||||
"brief": "【2024 FABI KOREA Conference】:Revolutionizing Fashion Design with AiDA At the 2024 FABI Conference, AiDA, an AI solution for fashion design, was the star of the show. Kim Wong, CEO of Code-Create, delivered a powerful presentation highlighted AiDA’s transformative impact on the fashion industry. The enthusiastic reception at the conference confirmed AiDA’s popularity and its pivotal role in the future of fashion, where AI meets creativity to redefine the industry’s standards. The 2024 FABI Conference was more than just an event, it was a platform for showcasing the future of fashion. AiDA’s presence there was a clear indication of the direction the...",
|
||||
"day": "07",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/%E5%B0%81%E9%9D%A2-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"title": "Code-Create’s CEO Kim Wong Honored With Best Paper Award At 2024 International Fashion Conference",
|
||||
"brief": "Code-Create’s CEO Kim Wong Honored with Best Paper Award at 2024 International Fashion Conference We are thrilled to celebrate the CEO of Code-Create, Kim Wong’s outstanding achievement at the 2024 International Conference hosted by the Korean Society of Fashion Business! Kim was honored with the Best Paper Award for her compelling presentation, “Revitalize Fashion Ecosystem through AI – Future of fashion design process.” This presentation showcased the transformative power of AiDA, Code-Create’s designer-led AI tool, which is redefining the fashion design process by providing a platform that understands and enhances the creative vision of its users. This recognition is a...",
|
||||
"day": "07",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/IMG_8903-300x225.jpg",
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"title": "Hanyang University Meets AiDA",
|
||||
"brief": "Hanyang University Meets AiDA: A Fusion of Creativity and Technology During this workshop, we led the faculty and students of Hanyang University on an exploration of the mysteries of AI, experiencing the interaction with the design assistant AiDA. Everyone were truly amazed by AiDA’s unexpected creativity and the dynamic interactions it facilitated. The students’ works revealed new trends in the fashion world. We look forward to more exchanges and cooperation with Hanyang University in the future. Let’s all anticipate our next gathering!",
|
||||
"day": "28",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/12/%E6%92%A0%EE%BC%BF%EE%B2%84-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"title": "AiDA Workshop",
|
||||
"brief": "https://code-create.com.hk/wp-content/uploads/2024/11/AiDA-X-RCA-workshop-1.mov Despite the typhoon, our enthusiasm couldn’t be dampened! The event was a massive success, filled with engagement, interaction, and valuable insights! Deep appreciation goes to the distinguished speakers and coaches:Prof. Calvin Wong, CEO of AiDLab & Co-founder of Code-Create — Hong KongZowie and Anne from the Royal College of Art — UKJae from BESFXXK — South KoreaWillis from Zavvyave — Hong KongKitty, Aemika from SFT, PolyU — Hong Kong These experts shared their remarkable AiDA experiences and coached attendees through their AiDA journey! Fashion design instructors and students from SFT, DI, and Youth College were amazed by AiDA’s cutting-edge...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/11/%E6%92%A0%EE%BC%BF%EE%B2%84-300x201.jpg",
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"title": "AiDA X SFT AI Fashion Award 2024",
|
||||
"brief": "AiDA X SFT AI Fashion Award 2024 With the aim of inspiring students to innovate in fashion design using AI, Code-Create and The Hong Kong Polytechnic University School of Fashion and Textiles (SFT) have jointly launched the ‘AiDA X SFT AI Fashion Award 2024’. This competition provides students with valuable practical AiDA experience, laying the foundation for the future fashion design industry and positioning them as pioneers in AI fashion.The competition is open to all SFT students, with the winners having the chance to win cash prizes (up to 20,000 HKD), internship opportunity at BESFXXK (will work with the renowned...",
|
||||
"day": "19",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/11/3611731651515_.pic_hd-225x300.png",
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"title": "CentreStage 2024",
|
||||
"brief": "At CentreStage, AiDA has captured the attention of many professionals from the fashion industry...",
|
||||
"day": "03",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/CentreStage-2024-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"title": "Press Conference: Code-Create Secures Investment From Eschange Capital",
|
||||
"brief": "The innovative AI fashion design platform AiDA, is leading the fashion industry into a new phase of digital transformation. Code-Create announced yesterday that it has secured strategic ...",
|
||||
"day": "02",
|
||||
"month": "Sep",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Code-Create-Secures-Investment-from-Eschange-Capital-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"title": "“Hong Kong China Night” In Paris",
|
||||
"brief": "In Paris, the \"Culture X AI 2024-2025\" event was meticulously planned by the Laboratory for Artificial Intelligence in Design(AiDLab)...",
|
||||
"day": "06",
|
||||
"month": "Aug",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Hong-Kong-China-Night-in-Paris-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"title": "Culture X Al 2024-2025: Culture And Future Mode",
|
||||
"brief": "Culture X Al: Kan Tai Keung X AiDLab X HK Fashion Designers Show is finally here...",
|
||||
"day": "17",
|
||||
"month": "Jul",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2024/09/Culture-and-Future-Mode-300x200.jpg",
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"title": "Fashion X AI 2022-2023: International Symposium",
|
||||
"brief": "This international symposium will bring together the world's leading...",
|
||||
"day": "17",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_international_symposium-300x150.jpg",
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"title": "Fashion X AI 2022-2023: Touring Exhibitions",
|
||||
"brief": "The upcoming touring exhibitions feature a series of the latest...",
|
||||
"day": "13",
|
||||
"month": "Feb",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_touring_exhibitions-300x150.jpg",
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "International Seminar On “AI In Fashion Marketing Research”",
|
||||
"brief": "Technology is playing an important role in the design...",
|
||||
"day": "18",
|
||||
"month": "Jan",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2023/01/international_seminar_banner-300x210.jpg",
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"title": "Fashion X AI 2022-2023: Fashion Show & Forum",
|
||||
"brief": "AiDLab is honoured to hold the region’s first programme...",
|
||||
"day": "19",
|
||||
"month": "Dec",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2021/12/fashionai_thumb_fashion_show-300x150.jpg",
|
||||
},
|
||||
{
|
||||
"id": 1,
|
||||
"title": "CENTRESTAGE",
|
||||
"brief": "Code Create has joint a seminar at CENTRESTAGE with AiDLab...",
|
||||
"day": "20",
|
||||
"month": "Nov",
|
||||
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_cover-1-300x150.jpg",
|
||||
}
|
||||
]
|
||||
132
src/pages/help-centre/faq.vue
Normal file
132
src/pages/help-centre/faq.vue
Normal file
@@ -0,0 +1,132 @@
|
||||
<script setup lang="ts">
|
||||
import { ref } from "vue";
|
||||
// 使用接口定义
|
||||
const faqList = ref([
|
||||
{
|
||||
id: 1,
|
||||
title: 'What are the minimum, recommended system requirements?',
|
||||
content: 'As AiDA is a cloud-based system, only stable internet access is required.',
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: 'Does AiDA run on both a PC & a MAC?',
|
||||
content: 'Yes, AiDA supports both PC & MAC.',
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: 'Does AiDA run on an iPad?',
|
||||
content: 'Yes, AiDA can be run on an iPad.',
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: 'What File Types it supports?',
|
||||
content: 'The image file types that can be uploaded into AiDA: jpeg, jpg, png',
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: 'In what languages is AiDA system available',
|
||||
content: 'Currently, AiDA is available in English',
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: 'Can I receive my invoice?',
|
||||
content: 'The invoice will be sent to your registered mailbox 1 months before (for paid subscription) with the reminder email.',
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
title: 'How do I change my password?',
|
||||
content: 'You could change your password after login to your account in “My Account” page “Account details” part.',
|
||||
},
|
||||
])
|
||||
const openIdList = ref([])
|
||||
const openInfo = (id) => {
|
||||
if(openIdList.value.includes(id)){
|
||||
openIdList.value = openIdList.value.filter(item => item !== id)
|
||||
}else{
|
||||
openIdList.value.push(id)
|
||||
}
|
||||
}
|
||||
defineExpose({})
|
||||
</script>
|
||||
<template>
|
||||
<section class="faq">
|
||||
<div class="content">
|
||||
<h2>FAQ</h2>
|
||||
<div class="faq-list">
|
||||
<div v-for="item in faqList" :key="item.id" class="faq-item">
|
||||
<h2 @click="openInfo(item.id)">
|
||||
{{ item.title }}
|
||||
<span class="iconfont icon-sanjiao_xia" :class="{'active': openIdList.includes(item.id)}"></span>
|
||||
</h2>
|
||||
<div class="info" :class="{'active': openIdList.includes(item.id)}">
|
||||
<p>{{ item.content }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
<style lang="less" scoped>
|
||||
.faq{
|
||||
width: 100%;
|
||||
padding: 60px 0;
|
||||
background-color: #f9f9f9;
|
||||
|
||||
> .content{
|
||||
max-width: 1140px;
|
||||
margin: 0 auto;
|
||||
> h2{
|
||||
|
||||
font-family: "Poppins", Sans-serif;
|
||||
font-size: 40px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
color: #000000;
|
||||
margin-bottom: 40px;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
> .faq-list{
|
||||
> .faq-item{
|
||||
border-bottom: 1px solid #d5d8dc;
|
||||
> h2{
|
||||
padding: 40px 0px 40px 0px;
|
||||
font-family: "Poppins", Sans-serif;
|
||||
font-size: 24px;
|
||||
line-height: 1.5em;
|
||||
color: #333333;
|
||||
font-weight: 700;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
cursor: pointer;
|
||||
> span{
|
||||
font-size: 14px;
|
||||
transition: all .3s;
|
||||
&.active{
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
> .info{
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
transition: all .3s;
|
||||
&.active{
|
||||
height: 70px;
|
||||
}
|
||||
> p{
|
||||
padding: 15px;
|
||||
color: #333333;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,30 @@
|
||||
<script setup lang="ts">
|
||||
import Title from './title.vue'
|
||||
import Faq from './faq.vue'
|
||||
defineExpose({})
|
||||
</script>
|
||||
<template>
|
||||
<div class="about-us">
|
||||
<div class="bg">
|
||||
<img src="https://code-create.com.hk/wp-content/uploads/2022/11/helpcentre_banner-1.jpg" alt="">
|
||||
</div>
|
||||
<Title />
|
||||
<Faq />
|
||||
</div>
|
||||
</template>
|
||||
<style lang="less" scoped>
|
||||
.about-us{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
> .bg{
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
z-index: -1;
|
||||
top: 0;
|
||||
> img{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
32
src/pages/help-centre/title.vue
Normal file
32
src/pages/help-centre/title.vue
Normal file
@@ -0,0 +1,32 @@
|
||||
<script setup lang="ts">
|
||||
defineExpose({})
|
||||
</script>
|
||||
<template>
|
||||
<section class="title-section">
|
||||
<div class="content">
|
||||
<div class="text">
|
||||
<h1>HELP CENTRE</h1>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
<style lang="less" scoped>
|
||||
.title-section{
|
||||
width: 100%;
|
||||
> .content{
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
> .text{
|
||||
padding: 200px 300px;
|
||||
> h1{
|
||||
text-align: center;
|
||||
font-size: 64px;
|
||||
font-weight: 600;
|
||||
line-height: 64px;
|
||||
letter-spacing: 2px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -2,7 +2,9 @@
|
||||
<div class="media">
|
||||
<img class="bg" src="@/assets/images/media/bg.jpg" alt="" />
|
||||
<section class="header">
|
||||
<h1 v-custom-animation.once duration="1s" translate-y-s="-100" opacity-s="0">Media</h1>
|
||||
<h1 v-custom-animation.once duration="1s" translate-y-s="-100%" opacity-s="0">
|
||||
{{ $t('MainHeader.Media') }}
|
||||
</h1>
|
||||
</section>
|
||||
<section class="content">
|
||||
<div class="box">
|
||||
|
||||
179
src/pages/mixi/index.vue
Normal file
179
src/pages/mixi/index.vue
Normal file
@@ -0,0 +1,179 @@
|
||||
<template>
|
||||
<div class="mixi">
|
||||
<img class="bg" src="@/assets/images/mixi/bg.jpg" alt="" />
|
||||
<section class="header">
|
||||
<img
|
||||
src="@/assets/images/mixi/logo-mixi.png"
|
||||
alt=""
|
||||
v-custom-animation.once
|
||||
duration="1s"
|
||||
translate-y-s="100%"
|
||||
opacity-s="0"
|
||||
/>
|
||||
</section>
|
||||
<section class="introduce">
|
||||
<div class="box" v-custom-animation.once="{ duration: '1.25s' }">
|
||||
<h2 class="title">
|
||||
Best-in-class Precise Fashion Attribute and Colour Recognition System
|
||||
</h2>
|
||||
<p class="tip" translate-y-s="100%" opacity-s="0">
|
||||
Mixi is an AI-based fine-grained fashion attribute and colour recognition tool
|
||||
that can be used for both online shopping platforms and bricks and mortar
|
||||
stores. Mixi allows the customer to easily find fashion items that possess
|
||||
his/her preferred fashion attributes and colours.
|
||||
</p>
|
||||
<button custom @click="scrollToJoin" translate-y-s="100%" opacity-s="0">
|
||||
CONTACT US
|
||||
</button>
|
||||
</div>
|
||||
</section>
|
||||
<section class="video">
|
||||
<div class="content" @click="playVideo">
|
||||
<img
|
||||
src="https://code-create.com.hk/wp-content/uploads/2022/11/mixi_video_thumb.jpg"
|
||||
alt=""
|
||||
/>
|
||||
<span class="iconfont icon-bofang"></span>
|
||||
</div>
|
||||
</section>
|
||||
<section class="email-input" ref="joinRef">
|
||||
<EmailBox
|
||||
@submit="submit"
|
||||
:title="$t('Interested in Mixi?')"
|
||||
:tip="$t('We will contact you for customized plan.')"
|
||||
/>
|
||||
</section>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue'
|
||||
import EmailBox from '@/components/email-box.vue'
|
||||
import MyEvent from '@/directives/myEvents'
|
||||
|
||||
const playVideo = () => {
|
||||
MyEvent.emit('playVideo', {
|
||||
url: 'https://code-create.com.hk/wp-content/uploads/2022/11/mixi_video.mp4',
|
||||
poster: 'https://code-create.com.hk/wp-content/uploads/2022/11/mixi_video_thumb.jpg'
|
||||
})
|
||||
}
|
||||
const joinRef = ref(null)
|
||||
const scrollToJoin = () => {
|
||||
window.scrollTo({
|
||||
top: joinRef.value.offsetTop,
|
||||
behavior: 'smooth'
|
||||
})
|
||||
}
|
||||
const submit = (email: string) => {
|
||||
console.log(email)
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
.mixi {
|
||||
> * {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
> .bg {
|
||||
height: 500px;
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 0;
|
||||
}
|
||||
> .header {
|
||||
height: 500px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: transparent;
|
||||
> img {
|
||||
max-width: 200px;
|
||||
width: 90%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
> .introduce {
|
||||
padding: 200px 0;
|
||||
background-color: #eeeeee;
|
||||
> .box {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
max-width: 730px;
|
||||
text-align: center;
|
||||
> .title {
|
||||
color: #222;
|
||||
font-size: 24px;
|
||||
margin-bottom: 30px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
> .tip {
|
||||
color: #555;
|
||||
font-size: 16px;
|
||||
line-height: 25px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
> button {
|
||||
width: auto;
|
||||
height: auto;
|
||||
border-radius: 40px;
|
||||
padding: 20px 40px;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
> .video {
|
||||
width: 100%;
|
||||
background-color: #463a37;
|
||||
padding: 100px 0;
|
||||
> .content {
|
||||
max-width: 1120px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
> img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
> .icon-bofang {
|
||||
font-size: 100px;
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
animation: identifier 2s ease-in-out infinite;
|
||||
transition: 0.3s all;
|
||||
@keyframes identifier {
|
||||
0% {
|
||||
transform: translate(-50%, -50%) scale(1);
|
||||
filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 1));
|
||||
}
|
||||
50% {
|
||||
transform: translate(-50%, -50%) scale(0.95);
|
||||
filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 1));
|
||||
}
|
||||
100% {
|
||||
transform: translate(-50%, -50%) scale(1);
|
||||
filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
> .email-input {
|
||||
padding: 100px;
|
||||
> .email-box {
|
||||
max-width: 860px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -37,6 +37,11 @@ export const routes: RouteRecordRaw[] = [
|
||||
name: 'Aida',
|
||||
component: () => import('./pages/aida/index.vue')
|
||||
},
|
||||
{
|
||||
path: 'mixi',
|
||||
name: 'mixi',
|
||||
component: () => import('./pages/mixi/index.vue')
|
||||
},
|
||||
{ path: 'events',
|
||||
name: 'events',
|
||||
component: () => import('./pages/events/index.vue')
|
||||
|
||||
Reference in New Issue
Block a user