Browse Source

feat : rnd, 운영 부분 수정

remotes/origin/main
이시연 3 weeks ago
parent
commit
e856a72cbd
  1. BIN
      public/images/rnd_img6.png
  2. 4
      src/pages/business/MaintenancePage.jsx
  3. 47
      src/pages/business/RndPage.jsx

BIN
public/images/rnd_img6.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

4
src/pages/business/MaintenancePage.jsx

@ -522,7 +522,7 @@ function MaintenancePage() {
<br />
시스템의 가용성과 안정성을 지속적으로 보장합니다.
</motion.p>
<motion.a
{/* <motion.a
className="mt-intro__cta"
href="/contact"
initial={{ opacity: 0, y: 12 }}
@ -539,7 +539,7 @@ function MaintenancePage() {
strokeLinejoin="round"
/>
</svg>
</motion.a>
</motion.a> */}
</div>
<div className="mt-intro__right">
<VennDiagram inView={introInView} />

47
src/pages/business/RndPage.jsx

@ -28,9 +28,32 @@ const ease = [0.25, 0.1, 0.25, 1];
const PROJECTS = [
{
id: "01",
title: "UTM 드론 교통관리체계",
tags: ["드론", "교통관리"],
image: "images/rnd_img6.png",
desc: [
{
icon: <Plane size={14} />,
title: "저고도 공역 관리",
text: "150m 이하 저고도 공역 드론 운항 체계 연구",
},
{
icon: <Network size={14} />,
title: "교통관리 시스템",
text: "드론 안전하고 효율적인 교통관리체계 개발",
},
{
icon: <Settings size={14} />,
title: "운항 최적화",
text: "무인비행장치 운항 안전·효율 극대화 실증",
},
],
},
{
id: "02",
title: "드론 규제 샌드박스",
tags: ["드론", "규제/실증"],
image: "/images/rnd_img1.png",
image: "images/rnd_img1.png",
desc: [
{
icon: <Shield size={14} />,
@ -50,10 +73,10 @@ const PROJECTS = [
],
},
{
id: "02",
id: "03",
title: "환경 드론 관제 시스템 구축",
tags: ["드론", "환경/대기"],
image: "/images/rnd_img2.png",
image: "images/rnd_img2.png",
desc: [
{
icon: <Wind size={14} />,
@ -73,10 +96,10 @@ const PROJECTS = [
],
},
{
id: "03",
id: "04",
title: "메타버스 시스템 구축",
tags: ["메타버스", "디지털전환"],
image: "/images/rnd_img3.png",
image: "images/rnd_img3.png",
desc: [
{
icon: <Globe size={14} />,
@ -96,10 +119,10 @@ const PROJECTS = [
],
},
{
id: "04",
id: "05",
title: "항공인력양성팀 운영 시스템",
tags: ["항공", "인력양성"],
image: "/images/rnd_img4.png",
image: "images/rnd_img4.png",
desc: [
{
icon: <GraduationCap size={14} />,
@ -119,10 +142,10 @@ const PROJECTS = [
],
},
{
id: "05",
id: "06",
title: "경량항공기 내비게이션 및 비행상황관리 시스템",
tags: ["경량항공기", "비행안전"],
image: "/images/rnd_img5.png",
image: "images/rnd_img5.png",
desc: [
{
icon: <Navigation size={14} />,
@ -142,6 +165,7 @@ const PROJECTS = [
],
},
];
const AUTO_DELAY = 5000;
function RndPage() {
@ -242,12 +266,9 @@ function RndPage() {
label="BUSINESS"
title={
<>
{/* <span style={{ color: "#111" }}> </span>
<br /> */}
<em>R&D</em>
</>
}
// desc="· ."
navItems={BUSINESS_NAV}
/>
@ -376,7 +397,7 @@ function RndPage() {
>
<div className="si_archive__card-img">
<img
src={`${basePath}images/rnd_img${parseInt(project.id)}.png`}
src={`${basePath}${project.image}`}
alt={project.title}
draggable="false"
/>

Loading…
Cancel
Save