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

47
src/pages/business/RndPage.jsx

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

Loading…
Cancel
Save