import React from 'react'; import { Link } from 'react-router-dom'; import './Common.css'; const MAP = [ { title: 'ํ™ˆ', icon: '๐Ÿ ', links: [{ label: '๋ฉ”์ธ ํ™ˆํŽ˜์ด์ง€', path: '/' }], }, { title: 'ํšŒ์‚ฌ์†Œ๊ฐœ', icon: '๐Ÿข', links: [ { label: 'CEO ์ธ์‚ฌ๋ง', path: '/company/greeting' }, { label: '์—ฐํ˜', path: '/company/history' }, { label: '์กฐ์ง๋„', path: '/company/organization' }, { label: 'CI ์†Œ๊ฐœ', path: '/company/ci' }, { label: '์˜ค์‹œ๋Š” ๊ธธ', path: '/company/location' }, ], }, { title: '์†”๋ฃจ์…˜', icon: '๐Ÿ›ก๏ธ', links: [ { label: 'GUARDiA ITSM', path: '/solution/guardia', badge: 'NEW' }, { label: 'ERP ์†”๋ฃจ์…˜', path: '/solution/erp' }, { label: 'CRM ์†”๋ฃจ์…˜', path: '/solution/crm' }, { label: 'BI ์†”๋ฃจ์…˜', path: '/solution/bi' }, ], }, { title: '์‚ฌ์—…์‹ค์ ', icon: '๐Ÿ“Š', links: [ { label: '๊ตฌ์ถ• ๋ ˆํผ๋Ÿฐ์Šค', path: '/business/reference' }, { label: 'ํŒŒํŠธ๋„ˆ', path: '/business/partner' }, ], }, { title: '๊ณ ๊ฐ์ง€์›', icon: '๐Ÿ’ฌ', links: [ { label: '๊ณต์ง€์‚ฌํ•ญ', path: '/support/notice' }, { label: 'FAQ', path: '/support/faq' }, { label: '์นดํƒˆ๋กœ๊ทธ', path: '/support/catalog' }, { label: '๋ฌธ์˜ํ•˜๊ธฐ', path: '/support/contact' }, ], }, { title: '์ฑ„์šฉ', icon: '๐Ÿ‘ฅ', links: [ { label: '์ฑ„์šฉ๊ณต๊ณ ', path: '/recruit/jobs' }, { label: '๋ณต๋ฆฌํ›„์ƒ', path: '/recruit/welfare' }, { label: '์ง€์›ํ•˜๊ธฐ', path: '/recruit/apply' }, ], }, { title: '๋‰ด์Šค', icon: '๐Ÿ“ฐ', links: [ { label: '๋‰ด์Šค๋ฃธ', path: '/news/newsroom' }, { label: '๊ธฐ์ˆ  ๋ธ”๋กœ๊ทธ', path: '/news/blog' }, ], }, { title: 'ํšŒ์›', icon: '๐Ÿ”‘', links: [ { label: '๋กœ๊ทธ์ธ / ํšŒ์›๊ฐ€์ž…', path: '/login' }, ], }, { title: '์ •์ฑ…', icon: '๐Ÿ“‹', links: [ { label: '๊ฐœ์ธ์ •๋ณด์ฒ˜๋ฆฌ๋ฐฉ์นจ', path: '/privacy' }, { label: '์ด์šฉ์•ฝ๊ด€', path: '/terms' }, { label: '์‚ฌ์ดํŠธ๋งต', path: '/sitemap' }, ], }, ]; export default function Sitemap() { return (
Sitemap

์‚ฌ์ดํŠธ๋งต

(์ฃผ)์ง€์˜ค์ •๋ณด๊ธฐ์ˆ  ํ™ˆํŽ˜์ด์ง€ ์ „์ฒด ๋ฉ”๋‰ด ์•ˆ๋‚ด

{MAP.map((section, i) => (

{section.icon} {section.title}

    {section.links.map((link, j) => (
  • โ€บ {link.label} {link.badge && ( {link.badge} )}
  • ))}
))}
); }