const CONFIG = { sectionA: [ { id: 1, title: "시민주도 공공개발", link: "https://urienergy.com/projects/", image: "https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&q=80&w=800", icon: ( ), }, { id: 2, title: "진행중 프로젝트", link: "https://urienergy.com/ingbiz/", image: "https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&q=80&w=800", icon: ( ), }, { id: 3, title: "참여하기", link: "https://urienergy.com/join/", image: "https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&q=80&w=800", icon: ( ), }, { id: 4, title: ( 회원사 전용 웹·제안서 지원 ), link: "https://urienergy.com/promo_landing_page.html", image: "https://images.unsplash.com/photo-1508514177221-188b1ca16e93?auto=format&fit=crop&q=80&w=800", icon: ( ), }, ], sectionB: [ { id: 1, title: 국민에너지전국회의, link: "https://urienergy.com/about-2/", icon: ( ), }, { id: 2, title: "국민솔라(주)", link: "https://urienergy.com/home/", icon: ( ), }, { id: 3, title: "상담신청", link: "https://urienergy.com/contact/", icon: ( ), }, { id: 4, title: "회사위치", link: "https://urienergy.com/contact/", icon: ( ), }, { id: 5, title: ( 나라장터 + 태양광사업 ), link: "https://uloca.net/g2b_search/?searchType=1&kwd=%ED%83%9C%EC%96%91%EA%B4%91", icon: ( ), }, ], }; function FrequentlyVisitedMenu() { return ( {/* Main Title */} 자주 찾는 메뉴 {/* ========================================= Section A : Business Cards (Grid of 4) ========================================= */} {CONFIG.sectionA.map((item) => ( {item.icon} {item.title} ))} {/* ========================================= Section B : Quick Links (Grid of 5) ========================================= */} {CONFIG.sectionB.map((item) => ( {item.icon} {item.title} ))} ); } const rootElement = document.getElementById("frequently-visited-root"); if (rootElement) { const root = ReactDOM.createRoot(rootElement); root.render(); }