|
|
@@ -0,0 +1,437 @@
|
|
|
+import React, { useState } from 'react';
|
|
|
+import { useScrollAnimation } from "@/hooks/useScrollAnimation";
|
|
|
+import Tabs, { TabItem } from "@/components/common/Tabs";
|
|
|
+
|
|
|
+const tabItems: TabItem[] = [
|
|
|
+ { id: '1', label: 'ESG 개요' },
|
|
|
+ { id: '2', label: 'Environment' },
|
|
|
+ { id: '3', label: 'Social' },
|
|
|
+ { id: '4', label: 'Governance' },
|
|
|
+];
|
|
|
+
|
|
|
+const Esg = () => {
|
|
|
+ const [activeTab, setActiveTab] = useState('1');
|
|
|
+ const { ref, isVisible } = useScrollAnimation({ threshold: 0.1 });
|
|
|
+
|
|
|
+ const renderESGOverview = () => (
|
|
|
+ <div className="space-y-12">
|
|
|
+ <div className="text-center space-y-6">
|
|
|
+ <h2 className="text-3xl sm:text-4xl lg:text-5xl font-bold text-blue-900 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ 지속가능경영 (ESG)
|
|
|
+ </h2>
|
|
|
+ <p className="text-base sm:text-lg lg:text-xl font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed max-w-4xl mx-auto">
|
|
|
+ ESG는 Environment(환경), Social(사회), Governance(지배구조)의 약자로, 기업이 단순한 이윤 추구를 넘어 환경 보호, 사회적 책임, 윤리적 경영을 실천하는 지속가능경영 지표입니다.
|
|
|
+ </p>
|
|
|
+ <p className="text-base sm:text-lg lg:text-xl font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed max-w-4xl mx-auto">
|
|
|
+ 전 세계 투자자들과 고객들은 이제 'ESG를 잘하는 기업'을 선택합니다. 반도산전(주)는 ESG 경영을 통해 책임 있는 시공, 친환경 기술 도입, 근로자와 협력사 상생, 투명한 경영을 실천하며 신뢰받는 기업으로 성장하고 있습니다.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="flex justify-center">
|
|
|
+ <div className="w-full max-w-2xl h-80 bg-gray-100 rounded-lg flex items-center justify-center">
|
|
|
+ <span className="text-gray-500 text-lg font-medium font-['Noto_Sans_KR'] antialiased">ESG 개념도 이미지</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-blue-50 p-8 rounded-lg">
|
|
|
+ <div className="flex items-center gap-4 mb-6">
|
|
|
+ <div className="w-12 h-12 bg-blue-900 rounded-full flex items-center justify-center">
|
|
|
+ <span className="text-white font-bold text-lg">2</span>
|
|
|
+ </div>
|
|
|
+ <h3 className="text-2xl sm:text-3xl font-bold text-blue-900 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ 이크레더블 ESG 평가보고서 2등급
|
|
|
+ </h3>
|
|
|
+ </div>
|
|
|
+ <p className="text-base sm:text-lg font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed mb-6">
|
|
|
+ 매년 공신력 있는 ESG 평가를 통해 지속가능경영 수준을 입증합니다. 반도산전(주)는 매년 국내 주요 ESG 평가 전문기관인 이크레더블(i-CREDBLE)을 통해 ESG(환경·사회·지배구조) 등급 평가를 정기적으로 받고 있으며, 우수 등급을 꾸준히 유지하고 있습니다.
|
|
|
+ </p>
|
|
|
+ <div className="w-full max-w-md h-60 bg-white rounded-lg border flex items-center justify-center">
|
|
|
+ <span className="text-gray-500 text-sm font-medium font-['Noto_Sans_KR'] antialiased">ESG 평가보고서 이미지</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="space-y-8">
|
|
|
+ <h3 className="text-2xl sm:text-3xl font-bold text-blue-900 font-['Noto_Sans_KR'] antialiased text-center">
|
|
|
+ 주요 국제 인증
|
|
|
+ </h3>
|
|
|
+
|
|
|
+ <div className="grid md:grid-cols-3 gap-8">
|
|
|
+ <div className="text-center space-y-4">
|
|
|
+ <div className="w-full h-48 bg-gray-100 rounded-lg flex items-center justify-center">
|
|
|
+ <span className="text-gray-500 text-sm font-medium font-['Noto_Sans_KR'] antialiased">ISO 9001 인증서</span>
|
|
|
+ </div>
|
|
|
+ <h4 className="text-xl font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">ISO 9001</h4>
|
|
|
+ <p className="text-sm font-medium text-blue-900 font-['Noto_Sans_KR'] antialiased">품질경영시스템 인증</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-600 leading-relaxed">
|
|
|
+ 고객 만족과 품질 향상의 체계적 관리. 국제표준화기구(ISO)가 제정한 품질경영시스템(QMS)에 관한 국제 표준입니다.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="text-center space-y-4">
|
|
|
+ <div className="w-full h-48 bg-gray-100 rounded-lg flex items-center justify-center">
|
|
|
+ <span className="text-gray-500 text-sm font-medium font-['Noto_Sans_KR'] antialiased">ISO 14001 인증서</span>
|
|
|
+ </div>
|
|
|
+ <h4 className="text-xl font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">ISO 14001</h4>
|
|
|
+ <p className="text-sm font-medium text-blue-900 font-['Noto_Sans_KR'] antialiased">환경경영시스템 인증</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-600 leading-relaxed">
|
|
|
+ 친환경 경영 실현을 위한 글로벌 기준. 환경영향을 최소화하기 위한 조직의 체계적인 관리 시스템에 관한 국제 표준입니다.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="text-center space-y-4">
|
|
|
+ <div className="w-full h-48 bg-gray-100 rounded-lg flex items-center justify-center">
|
|
|
+ <span className="text-gray-500 text-sm font-medium font-['Noto_Sans_KR'] antialiased">ISO 45001 인증서</span>
|
|
|
+ </div>
|
|
|
+ <h4 className="text-xl font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">ISO 45001</h4>
|
|
|
+ <p className="text-sm font-medium text-blue-900 font-['Noto_Sans_KR'] antialiased">안전보건경영시스템 인증</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-600 leading-relaxed">
|
|
|
+ 근로자 안전과 건강을 보호하는 경영체계. 산업재해 예방과 건강한 근무환경 조성을 위한 안전보건 경영시스템에 관한 국제 표준입니다.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-green-50 p-8 rounded-lg">
|
|
|
+ <div className="flex items-center gap-4 mb-6">
|
|
|
+ <div className="w-12 h-12 bg-green-600 rounded-full flex items-center justify-center">
|
|
|
+ <span className="text-white font-bold text-lg">🌱</span>
|
|
|
+ </div>
|
|
|
+ <h3 className="text-2xl sm:text-3xl font-bold text-green-700 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ 스마트팜 확산기업 참여기업 등록
|
|
|
+ </h3>
|
|
|
+ </div>
|
|
|
+ <p className="text-base sm:text-lg font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed mb-6">
|
|
|
+ 농림축산식품부 산하 기관으로부터 스마트팜 확산사업 참여기업으로 공식 등록 (2021년 12월)
|
|
|
+ <br />
|
|
|
+ 시설원예 및 축산 분야에서 친환경 인프라 구축 역량을 인정받음
|
|
|
+ </p>
|
|
|
+ <div className="w-full max-w-md h-48 bg-white rounded-lg border flex items-center justify-center">
|
|
|
+ <span className="text-gray-500 text-sm font-medium font-['Noto_Sans_KR'] antialiased">스마트팜 확산기업 등록증 이미지</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+
|
|
|
+ const renderEnvironment = () => (
|
|
|
+ <div className="space-y-12">
|
|
|
+ <div className="text-center space-y-6">
|
|
|
+ <h2 className="text-3xl sm:text-4xl lg:text-5xl font-bold text-green-700 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ Environment (환경)
|
|
|
+ </h2>
|
|
|
+ <div className="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
|
|
|
+ <div className="bg-green-50 p-6 rounded-lg">
|
|
|
+ <h3 className="text-xl font-bold text-green-700 font-['Noto_Sans_KR'] antialiased mb-4">
|
|
|
+ 2025 환경경영방침
|
|
|
+ </h3>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed">
|
|
|
+ 반도산전(주)는 앞으로도 친환경 자재 선택, 에너지 절감 기술 도입, 현장별 오염 저감 활동 등을 통해 환경에 대한 책임을 다하겠습니다.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <div className="bg-green-50 p-6 rounded-lg">
|
|
|
+ <h3 className="text-xl font-bold text-green-700 font-['Noto_Sans_KR'] antialiased mb-4">
|
|
|
+ 2025 환경경영목표
|
|
|
+ </h3>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed">
|
|
|
+ 지속가능한 환경보호와 법규 준수를 통한 친환경 기업 실현
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="space-y-8">
|
|
|
+ <h3 className="text-2xl sm:text-3xl font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased text-center">
|
|
|
+ 환경경영 추진계획
|
|
|
+ </h3>
|
|
|
+
|
|
|
+ <div className="grid gap-6">
|
|
|
+ <div className="bg-white border-l-4 border-green-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ 환경법규 100% 준수 및 내부 기준 강화
|
|
|
+ </h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 전 사업장에서 배출시설, 폐기물 처리 등 환경 관련 법규 준수</li>
|
|
|
+ <li>• 자체 사내관리기준 수립 및 모니터링 체계 강화</li>
|
|
|
+ <li>• 미준수 발생 시 즉시 원인 분석 및 개선조치</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-green-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ 전 직원 환경 교육 100% 이수
|
|
|
+ </h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 연 1회 이상 본사 및 현장 중심의 환경관리 교육 시행</li>
|
|
|
+ <li>• 신규 입사자와 현장 근로자를 대상으로 실무 중심 교육</li>
|
|
|
+ <li>• 외부 전문가 초빙 교육을 통한 인식 제고 및 사고 예방</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-green-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ ISO14001 환경경영시스템 구축 및 성과 공개
|
|
|
+ </h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 국제 환경경영인증(ISO14001) 획득 및 유지</li>
|
|
|
+ <li>• 환경경영 실적을 지표화하여 대외 공개 및 ESG 경영 실현</li>
|
|
|
+ <li>• 본사 및 지사 대상 정기 심사를 통한 개선활동 추진</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-green-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ 건설 폐기물 처리 강화 및 재활용 확대
|
|
|
+ </h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 폐콘크리트, 폐아스팔트 등 폐기물을 전문 처리업체 위탁</li>
|
|
|
+ <li>• 폐기물 처리 실적 실시간 모니터링 및 투명한 배출관리</li>
|
|
|
+ <li>• 민원 대응 절차 및 환경오염 사고 대응 매뉴얼 수립</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+
|
|
|
+ const renderSocial = () => (
|
|
|
+ <div className="space-y-12">
|
|
|
+ <div className="text-center space-y-6">
|
|
|
+ <h2 className="text-3xl sm:text-4xl lg:text-5xl font-bold text-purple-700 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ Social (사회)
|
|
|
+ </h2>
|
|
|
+ <p className="text-base sm:text-lg lg:text-xl font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed max-w-4xl mx-auto">
|
|
|
+ 사람 중심 경영과 모두가 존중받는 근로환경
|
|
|
+ </p>
|
|
|
+ <p className="text-base sm:text-lg font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed max-w-4xl mx-auto">
|
|
|
+ 반도산전(주)는 인권 존중, 안전보건, 근로자 권익 보호, 다양성 증진을 통해 지속가능한 기업 시민으로서의 책임을 실천합니다.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-purple-50 p-8 rounded-lg">
|
|
|
+ <h3 className="text-2xl sm:text-3xl font-bold text-purple-700 font-['Noto_Sans_KR'] antialiased mb-6 text-center">
|
|
|
+ 반도산전(주) 인권경영 선언문
|
|
|
+ </h3>
|
|
|
+ <div className="bg-white p-6 rounded-lg border">
|
|
|
+ <p className="text-base font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed mb-4">
|
|
|
+ 우리는 미래 성장을 주도하는 열린 기업으로서 모든 경영활동 과정에서 사람 중심 기업으로서 그 사명을 다한다.
|
|
|
+ </p>
|
|
|
+ <p className="text-base font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed mb-6">
|
|
|
+ 이를 위해 우리는 '인간의 존엄과 가치를 보장하는 인권경영'을 선언하고 임직원이 준수하여야 할 행동규범 및 가치판단 기준으로 삼으며, 아래와 같이 그 실천을 다짐한다.
|
|
|
+ </p>
|
|
|
+ <div className="space-y-3">
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 사람을 최우선으로 하는 경영을 한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 장애, 성별, 인종, 종교, 국적, 지역 사회적 신분, 학력, 나이 직종 등의 이유로 고용상 차별하지 않으며, 상호 존중과 배려의 근무 환경을 제공한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 직원들에게 안전하고 위생적인 근무환경을 제공한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 어떠한 형태의 강제노동 및 아동노동도 금지한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 직원의 결사 및 단체교섭의 자유를 보장한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 유관기관 등을 포함한 모든 이해관계자의 인권을 존중한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 우리가 생산하는 재화를 소비하는 소비자의 인권을 보호하기 위하여 노력한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 국내외 환경법규를 준수하고 환경보호와 오염방지를 위하여 노력한다.</p>
|
|
|
+ <p className="text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700">하나, 우리는 인권침해를 사전에 예방하며 적극적인 구제를 위하여 노력할 뿐만 아니라, 지속적인 인권 개선활동으로 인권경영의 선두에 선다.</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="grid gap-6">
|
|
|
+ <div className="bg-white border-l-4 border-purple-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">인권경영 실천</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• UN 세계인권선언, ILO 핵심협약 등 국제 기준을 존중</li>
|
|
|
+ <li>• 경영 전반에 걸쳐 인권 침해 사전 예방 및 대응 체계 마련</li>
|
|
|
+ <li>• 전 임직원을 대상으로 인권경영 선언문과 행동규범 제정</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-purple-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">고용상 차별 금지</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 성별, 장애, 연령, 출신지역, 학력, 종교, 외모, 성적지향 등 모든 차별 금지</li>
|
|
|
+ <li>• 채용부터 교육, 승진, 평가까지 공정하고 투명한 인사 운영</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-purple-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">강제노동 및 아동노동 금지</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 강요, 협박, 신분증 압류, 채용수수료 요구 등 모든 형태의 강제근로 금지</li>
|
|
|
+ <li>• 15세 미만 고용 금지, 실습생은 보호기준에 따라 관리</li>
|
|
|
+ <li>• 임산부 및 미성년자의 야간·위험 근로 제한</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-purple-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">적법한 근로시간 및 휴식 보장</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 주 40시간 기본근로 + 주 12시간 이내 연장근로</li>
|
|
|
+ <li>• 비상상황 외에는 주 60시간 초과 금지, 주 1회 이상 휴일 보장</li>
|
|
|
+ <li>• 휴게시간, 연차, 육아시간 등 법정 휴식 제도 철저 준수</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-purple-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">임금 및 복리후생</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 최저임금 이상 지급, 초과근로수당은 법 기준보다 높게 산정</li>
|
|
|
+ <li>• 징계 목적의 임금 삭감 금지, 정기 건강검진 및 복지 제공</li>
|
|
|
+ <li>• 고용형태와 무관하게 공정한 처우와 고용 안정 보장</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-purple-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">결사의 자유 보장</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 노동조합 활동 및 단체교섭의 자유 보장</li>
|
|
|
+ <li>• 노조가입, 활동 등으로 인한 불이익 금지</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-purple-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">산업안전보건과 근로자 보호</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 전 임직원 대상 정기적 안전보건 교육</li>
|
|
|
+ <li>• 작업환경 측정, 보호구 지급, 유해물질 관리 등 법 기준 준수</li>
|
|
|
+ <li>• 산업안전보건법과 KOSHA18001 기준 기반의 체계적 관리</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+
|
|
|
+ const renderGovernance = () => (
|
|
|
+ <div className="space-y-12">
|
|
|
+ <div className="text-center space-y-6">
|
|
|
+ <h2 className="text-3xl sm:text-4xl lg:text-5xl font-bold text-blue-700 font-['Noto_Sans_KR'] antialiased">
|
|
|
+ Governance (지배구조)
|
|
|
+ </h2>
|
|
|
+ <p className="text-base sm:text-lg lg:text-xl font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed max-w-4xl mx-auto">
|
|
|
+ 투명하고 책임 있는 기업 운영 체계
|
|
|
+ </p>
|
|
|
+ <p className="text-base sm:text-lg font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 leading-relaxed max-w-4xl mx-auto">
|
|
|
+ 반도산전(주)는 윤리경영을 기반으로 투명한 의사결정, 내부통제, 부패방지 체계를 구축하여 지속가능한 성장과 신뢰받는 기업문화를 실현합니다.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="grid gap-6">
|
|
|
+ <div className="bg-white border-l-4 border-blue-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">윤리경영 실천 원칙</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 모든 임직원이 정직·공정·투명하게 업무 수행</li>
|
|
|
+ <li>• 법령 및 사내 규정 위반 행위 무관용 원칙 적용</li>
|
|
|
+ <li>• 협력사, 고객 등 외부 이해관계자와의 청렴한 거래 문화 정착</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-blue-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">내부신고 제도 운영</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 익명 및 비공개 보호 시스템을 갖춘 내부제보 채널 운영</li>
|
|
|
+ <li>• 임직원은 부정·부패·위법 행위 인지 시 신고 의무</li>
|
|
|
+ <li>• 조사 전담자와 윤리위원회를 통해 독립적이고 공정하게 처리</li>
|
|
|
+ <li>• 신고자 보호 및 보복 금지 정책 철저 이행</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-blue-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">지속적인 내부통제 및 감시</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 신고 내용은 조사 후 징계 절차 및 경영진 보고</li>
|
|
|
+ <li>• 중대한 사안은 감사위원회 및 대표이사에 즉시 보고</li>
|
|
|
+ <li>• 조사는 서면 및 전산 기록으로 보관하며 정보보호 강화</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="bg-white border-l-4 border-blue-600 p-6 shadow-sm">
|
|
|
+ <div className="flex items-center gap-3 mb-4">
|
|
|
+ <span className="text-2xl">✅</span>
|
|
|
+ <h4 className="text-lg font-bold text-gray-800 font-['Noto_Sans_KR'] antialiased">윤리위원회 구성 및 기능</h4>
|
|
|
+ </div>
|
|
|
+ <ul className="space-y-2 text-sm font-medium font-['Noto_Sans_KR'] antialiased text-gray-700 ml-8">
|
|
|
+ <li>• 윤리위원회는 사내 인트라넷을 통한 운영 및 접근성 확보</li>
|
|
|
+ <li>• 경영관리팀이 전담하여 신고 접수, 처리, 보호 업무 수행</li>
|
|
|
+ <li>• 정기적인 윤리교육 및 사례 공유를 통해 임직원 윤리의식 제고</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+
|
|
|
+ const renderContent = () => {
|
|
|
+ switch (activeTab) {
|
|
|
+ case '1':
|
|
|
+ return renderESGOverview();
|
|
|
+ case '2':
|
|
|
+ return renderEnvironment();
|
|
|
+ case '3':
|
|
|
+ return renderSocial();
|
|
|
+ case '4':
|
|
|
+ return renderGovernance();
|
|
|
+ default:
|
|
|
+ return renderESGOverview();
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ return (
|
|
|
+ <div ref={ref} className="px-4 sm:px-8 py-8 sm:py-12">
|
|
|
+ <div className={`max-w-7xl mx-auto transition-all duration-1000 ${isVisible ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-10'}`}>
|
|
|
+
|
|
|
+ <div className="text-center mb-8 sm:mb-12 lg:mb-16">
|
|
|
+ <h1 className="text-3xl sm:text-4xl lg:text-5xl font-bold text-blue-900 font-['Noto_Sans_KR'] antialiased mb-6">
|
|
|
+ 지속가능경영 (ESG)
|
|
|
+ </h1>
|
|
|
+ <div className="w-20 h-1 bg-blue-900 mx-auto"></div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <Tabs
|
|
|
+ items={tabItems}
|
|
|
+ activeTab={activeTab}
|
|
|
+ onTabChange={setActiveTab}
|
|
|
+ >
|
|
|
+ {renderContent()}
|
|
|
+ </Tabs>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+export default Esg;
|