Compare commits

...

2 Commits

Author SHA1 Message Date
X1627315083@163.com
a572e0c674 Merge branch 'main' of http://18.167.251.121:10003/aidlab/Code-Create 2026-05-20 15:55:05 +08:00
X1627315083@163.com
548193a64e events eventDetail 2026-05-20 15:53:51 +08:00
11 changed files with 995 additions and 1 deletions

View 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>

View 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>

View File

@@ -0,0 +1,135 @@
export default [
{
"id": 1,
"title": "CENTRESTAGE",
"brief": "Code Create has joint a seminar at CENTRESTAGE with AiDLab...",
"day": "11",
"month": "May",
"coverUrl": 'https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_cover-1-300x150.jpg',
"infoList": [
'Code Create has joint a seminar at CENTRESTAGE with AiDLab, along with a booth to showcase our latest technologies, including AiDA (AI-based Interactive Design Assistant for Fashion) and Mixi (Best-in-class Precise Fashion Attribute and Colour Recognition System).',
'',
'Our co-founders Prof Calvin Wong and Ms Kim Wong were invited to be the speakers of the Seminar on “Innovate Fashion & Textile Design with AI”. In addition to efficiency and accuracy, the use of AI can also spark creativity. For fashion design, AI based system can generate unlimited design proposals based on an individual designers or brands historical designs and latest inspirations, while at the same time, capturing brands essence.'
],
"url": "https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_08.jpg",
"urlGroup": [
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_01.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_02.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_03.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_04.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_05.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_06.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_07.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_08.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/11/centrestage_album_09.jpg",
]
},
{
"id": 2,
"title": "Fashion X AI 2022-2023: Fashion Show & Forum",
"brief": "AiDLab is honoured to hold the regions first programme...",
"day": "19",
"month": "Dec",
"coverUrl": 'https://code-create.com.hk/wp-content/uploads/2021/12/fashionai_thumb_fashion_show-300x150.jpg',
"infoList": [
'The fashion show showcased the collections developed with AI-based Interactive Design Assistant for Fashion (AiDA) by 6 Hong Kong, Mainland and overseas designers and 8 young talents. The forum showcased Prof. Calvin Wong (CEO and Centre Director, AiDLab)s vision for AI in the fashion industry and cover discussion with Ms. Kim Wong (Co-founder & CEO, Code-Create Limited), Ms Izumi Ogino (Creative Director, ANTEPRIMA), Ms Dilys Yiu (Director of Design, ANTEPRIMA) and participating designer Jae of BESFXXK about their experience with the AiDA system.',
'',
'Date: 19 December 2022',
'Time: 19:00 HKT',
'Admission: By Invitation',
'',
'About Fashion X AI: 2022 -2023 International Salon',
'',
'Fashion X AI: 2022 2023 International Salon sets out to act as a platform to empower the industry, academia, community, young talent and the public via knowledge exchange, active discourse, and cross-sector collaborations to utilise AI in all facets of the fashion industry. The program will take place for over 18 months through a series of exciting activities including fashion show & forum, fashion mentorship, international symposium, touring exhibitions, workshops, and online courses.',
'',
'Visit the program website for more details!',
],
"url": "https://code-create.com.hk/wp-content/uploads/2021/12/fashionai_thumb_fashion_show.jpg",
"urlGroup": [
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_01.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_02.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_03.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_04.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_05.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_06.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_07.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_08.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_09.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_10.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_11.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_12.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_13.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_14.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_15.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_16.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_17.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_18.jpg",
"https://code-create.com.hk/wp-content/uploads/2022/12/centrestage_album_19.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',
"infoList": [
'The upcoming touring exhibitions feature a series of the latest AI x fashion exhibits, including AiDA and fashion show outfits. The public will be able to interact with the exhibits, thus giving a first taste of the fashion industrys future. The exhibitions will be held in physical format at The Mills, Hong Kong (February 2023), Hong Kong Science Park (July 2023) and The Mills, London (Fall 2023).',
'',
'The Mills, Hong Kong',
'Date: 13 February 2023 26 February 2023',
'Venue: The Mills, Hong Kong',
'Admission: Free',
'',
'Hong Kong Science Park',
'Date: 27 June 2023 8 July 2023',
'Venue: Hong Kong Science Park Atrium Link',
'Admission: Free',
'',
'The Mills, London',
'Date: Fall 2023',
'Venue: The Mills, London',
'Admission: Free',
'',
'About Fashion X AI: 2022 -2023 International Salon',
'',
'Fashion X AI: 2022 2023 International Salon sets out to act as a platform to empower the industry, academia, community, young talents and the public via knowledge exchange, active discourse, and cross-sector collaborations to utilise AI in all facets of the fashion industry. The program will take place for over 18 months through a series of exciting activities including fashion show & forum, fashion mentorship, international symposium, touring exhibitions, workshops, and online courses.',
'',
'Visit the program website for more details!',
],
"url": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_touring_exhibitions.jpg",
"urlGroup": [
]
},
{
"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',
"infoList": [
'This international symposium will bring together the worlds leading multi-disciplinary practitioners for active sharing and knowledge exchange to address the current and future roles of AI in fashion.',
'',
'Date 17 February 2023',
'Format Hybrid (in person and online)',
'Venue The Mills Fabrica, Hong Kong',
'Language English',
'Admission Free',
'',
'About Fashion X AI: 2022 -2023 International Salon',
'',
'Fashion X AI: 2022 2023 International Salon sets out to act as a platform to empower the industry, academia, community, young talents and the public via knowledge exchange, active discourse, and cross-sector collaborations to utilise AI in all facets of the fashion industry. The program will take place for over 18 months through a series of exciting activities including fashion show & forum, fashion mentorship, international symposium, touring exhibitions, workshops, and online courses.',
'',
'Visit the program website for more details!',
],
"url": "https://code-create.com.hk/wp-content/uploads/2023/01/fahsionai_thumb_international_symposium.jpg",
"urlGroup": [
]
},
]

View File

@@ -0,0 +1,3 @@
export default [
]

View File

@@ -0,0 +1,3 @@
export default [
]

View 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>

View File

@@ -109,6 +109,9 @@ defineExpose({})
font-weight: 600; font-weight: 600;
line-height: 1; line-height: 1;
margin-bottom: 10px; margin-bottom: 10px;
&:hover{
color: #626262;
}
} }
> .info{ > .info{
font-size: 16px; font-size: 16px;

View File

@@ -1,7 +1,22 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, ref } from 'vue'
import Swiper from './swiper.vue' import Swiper from './swiper.vue'
import AllEvents from './all-events.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({}) defineExpose({})
</script> </script>
<template> <template>

466
src/pages/events/list-en.js Normal file
View File

@@ -0,0 +1,466 @@
export default [
{
"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"
},
{
"id": 2,
"title": "Fashion X AI 2022-2023: Fashion Show & Forum",
"brief": "AiDLab is honoured to hold the regions first programme...",
"day": "19",
"month": "Dec",
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2021/12/fashionai_thumb_fashion_show-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": 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": 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": 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": 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": 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": 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": 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": 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 couldnt 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 AiDAs 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": 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 AiDAs 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. Lets 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": 13,
"title": "Code-Creates CEO Kim Wong Honored With Best Paper Award At 2024 International Fashion Conference",
"brief": "Code-Creates CEO Kim Wong Honored with Best Paper Award at 2024 International Fashion Conference We are thrilled to celebrate the CEO of Code-Create, Kim Wongs 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-Creates 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": 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 AiDAs transformative impact on the fashion industry.  The enthusiastic reception at the conference confirmed AiDAs popularity and its pivotal role in the future of fashion, where AI meets creativity to redefine the industrys standards. The 2024 FABI Conference was more than just an event, it was a platform for showcasing the future of fashion. AiDAs 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": 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": 16,
"title": "CEO Of Code-Create Kim Wongs Inspiring Talk At Henrietta Secondary School",
"brief": "CEO of Code-Create Kim Wongs Inspiring Talk at Henrietta Secondary School — You can chase your dreams at any age! At Henrietta Secondary School, Code-Creates 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 Wongs talk was AiDA, the worlds first designer-led AI design tool. The tools 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": 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": 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": 19,
"title": "Feminine Power: Ms. Kim Wongs Journey In Fashion And AI",
"brief": "Feminine Power: Ms. Kim Wongs 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 ecosystems transformation. Ms. Kim specially mentioned AiDA, the worlds 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": 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 industrys 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": 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": 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-Creates AI-powered fashion design tool, AiDA, demonstrating how AI can optimize design processes, minimize resource waste, and unlock the tools 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": 23,
"title": "AiDA: Accelerating Fashion Design Efficiency By Over 60%",
"brief": "AiDA: Accelerating Fashion Design Efficiency by Over 60% Code-Creates 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": 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": 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": 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": 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 AiDAs 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": 28,
"title": "Congratulations To Code-Create For Being Named One Of Hong Kongs Hottest Startups Of 2025",
"brief": "Congratulations to Code-Create for being named one of Hong Kongs 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 companys 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": 29,
"title": "AiDAs Sustainable Design Innovation At Daegu Preview 2025",
"brief": "AiDAs 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": 30,
"title": "URFresh Take On Fashion AI — AiDA",
"brief": "URFresh 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 teams 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": 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": 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 designs 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 doesnt 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": 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 AiDAs 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. AiDAs 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": 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": 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-Creates 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": 36,
"title": "Preview In Seoul 2025",
"brief": "Preview in Seoul 2025 Code-Create is heading to Seoul!  Were 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, AiDLabs 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 dont miss our pitching...",
"day": "15",
"month": "Aug",
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2025/08/poster-213x300.jpeg"
},
{
"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. Everyones big question: Can AI really help designers bring ideas to life faster?The answer is yes!AiDA works seamlessly with a designers 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": 38,
"title": "AiDA 3.1 At Intertextile ShanghaiUpgraded Experience On-Site",
"brief": "AiDA 3.1 at Intertextile ShanghaiUpgraded 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": 39,
"title": "From Sketch To GarmentMade Possible With AiDA",
"brief": "https://code-create.com.hk/wp-content/uploads/2025/09/英-Intertextile-SH.mov From Sketch to GarmentMade 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": 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 Singapores 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 cant 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": 41,
"title": "AiDA In The ClassroomGlobal Designer Shares AI × Fashion In Practice",
"brief": "AiDA in the ClassroomGlobal 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-Creates 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.Its 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": 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": 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": 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 AiDLabs 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 AiDAs 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": 45,
"title": "Creator Shares AiDA Design Insights At University Lecture",
"brief": "Creator Shares AiDA Design Insights at University Lecture At Kyung Hee Universitys 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": 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 — its 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": 47,
"title": "Koreas Chonnam National University Is Using AiDA!",
"brief": "Koreas 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": 48,
"title": "AiDA × Hanyang UniversityA Deep Dive Into AI-Driven Fashion Design",
"brief": "AiDA × Hanyang UniversityA 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": 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": 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": 51,
"title": "Stepping Into PolyU, Connecting The Future",
"brief": "Stepping into PolyU, Connecting the Future At Code-Create, weve always believed that education...",
"day": "28",
"month": "Jan",
"coverUrl": "https://code-create.com.hk/wp-content/uploads/2026/01/IMG_7777-300x200.jpg"
},
{
"id": 52,
"title": "Across Disciplines · Across BordersAiDA Makes Design Accessible To All",
"brief": "Across Disciplines · Across BordersAiDA 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": 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"
},
{
"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-Creates 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"
},
{
"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"
},
{
"id": 56,
"title": "Code-Create Voted Top 5 Peoples Choice At Alibaba JUMPSTARTER 2026",
"brief": "Code-Create Voted Top 5 Peoples 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"
},
{
"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"
},
{
"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"
}
]

View File

@@ -0,0 +1,3 @@
export default [
]

View File

@@ -0,0 +1,3 @@
export default [
]