@ -17,6 +17,12 @@ const TEXT = {
) ,
) ,
desc : "항공 IT 플랫폼 구축, 서비스 운영, 기술 개발 관련 소식을 전합니다." ,
desc : "항공 IT 플랫폼 구축, 서비스 운영, 기술 개발 관련 소식을 전합니다." ,
news : [
news : [
{
date : "2026.08.25" ,
title : "2026 무인이동체 X 민군협력엑스포" ,
desc : "25일 서울 강남구 코엑스에서 열린 '2026 무인이동체 X 민군협력엑스포'를 찾은 관람객들이 인천테크노파크 부스에서 UAM을 살펴보고 있다." ,
link : "https://n.news.naver.com/article/015/0005324440?sid=101" ,
} ,
{
{
date : "2025.11.14" ,
date : "2025.11.14" ,
title : "포스맥-팔네트웍스, 미래항공교통산업 진출 전략적 MOU 체결" ,
title : "포스맥-팔네트웍스, 미래항공교통산업 진출 전략적 MOU 체결" ,
@ -29,12 +35,6 @@ const TEXT = {
desc : "공항 주변 드론 운항을 통합 관리하고 안전한 비행 환경을 구축합니다." ,
desc : "공항 주변 드론 운항을 통합 관리하고 안전한 비행 환경을 구축합니다." ,
link : "https://www.incheonilbo.com/news/articleView.html?idxno=1268774" ,
link : "https://www.incheonilbo.com/news/articleView.html?idxno=1268774" ,
} ,
} ,
{
date : "2024.10.31" ,
title : "인천경제청, K-UAM 콘펙스 '항공·스마트제조 기업 특별관' 운영" ,
desc : "항공·스마트제조 기업과 협력하며 미래 항공 모빌리티 생태계를 확장합니다." ,
link : "https://www.incheontoday.com/news/articleView.html?idxno=256068" ,
} ,
] ,
] ,
} ,
} ,
en : {
en : {
@ -48,24 +48,26 @@ const TEXT = {
) ,
) ,
desc : "News on our aviation IT platforms, service operations, and technology development." ,
desc : "News on our aviation IT platforms, service operations, and technology development." ,
news : [
news : [
{
date : "2026.08.25" ,
title : "2026 Unmanned Systems X Civil-Military Cooperation Expo" ,
desc : "Visitors explore a UAM aircraft at the Incheon Technopark booth during the 2026 Unmanned Systems X Civil-Military Cooperation Expo held at COEX in Seoul on August 25." ,
link : "https://n.news.naver.com/article/015/0005324440?sid=101" ,
} ,
{
{
date : "2025.11.14" ,
date : "2025.11.14" ,
title : "PosMac and PAL Networks Sign Strategic MOU on Future Air Traffic" ,
title :
"PosMac and PAL Networks Sign Strategic MOU on Future Air Traffic" ,
desc : "Building a joint business model in the high-growth air mobility market, spanning technology development, infrastructure, and policy projects." ,
desc : "Building a joint business model in the high-growth air mobility market, spanning technology development, infrastructure, and policy projects." ,
link : "https://www.gnynews.co.kr/news/articleView.html?idxno=453325" ,
link : "https://www.gnynews.co.kr/news/articleView.html?idxno=453325" ,
} ,
} ,
{
{
date : "2024.10.22" ,
date : "2024.10.22" ,
title : "PAL Networks Selected for Korea Airports Corporation Drone Traffic Management Project" ,
title :
"PAL Networks Selected for Korea Airports Corporation Drone Traffic Management Project" ,
desc : "Providing integrated management of drone operations around airports for a safer flight environment." ,
desc : "Providing integrated management of drone operations around airports for a safer flight environment." ,
link : "https://www.incheonilbo.com/news/articleView.html?idxno=1268774" ,
link : "https://www.incheonilbo.com/news/articleView.html?idxno=1268774" ,
} ,
} ,
{
date : "2024.10.31" ,
title : "Incheon Free Economic Zone Runs K-UAM Confex Aviation & Smart Manufacturing Pavilion" ,
desc : "Expanding the future air mobility ecosystem in partnership with aviation and smart manufacturing companies." ,
link : "https://www.incheontoday.com/news/articleView.html?idxno=256068" ,
} ,
] ,
] ,
} ,
} ,
} ;
} ;
@ -124,7 +126,12 @@ function MainNews() {
< div className = "main-news-list" >
< div className = "main-news-list" >
{ t . news . map ( ( item , index ) => (
{ t . news . map ( ( item , index ) => (
< a href = { item . link } target = "_blank" rel = "noopener noreferrer" key = { index } >
< a
href = { item . link }
target = "_blank"
rel = "noopener noreferrer"
key = { index }
>
< article
< article
className = "main-news-item"
className = "main-news-item"
ref = { ( el ) => {
ref = { ( el ) => {
@ -137,8 +144,10 @@ function MainNews() {
< / div >
< / div >
< div className = "main-news-content" >
< div className = "main-news-content" >
< h3 className = "main-news-content-title-clamp" > { item . title } < / h3 >
< h3 className = "main-news-content-title-clamp" >
< p > { item . desc } < / p >
{ item . title }
< / h3 >
< p className = "main-news-desc-clamp" > { item . desc } < / p >
< / div >
< / div >
< div className = "main-news-arrow" > ↗ < / div >
< div className = "main-news-arrow" > ↗ < / div >