생애주기별 맞춤 복지 시대 유망 자격증

OHLSEDU 수강생만

누리는 특별 혜택!

OHLSEDU

학습자님의 리얼한 후기!

import { useState } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Progress } from "@/components/ui/progress"; import { Button } from "@/components/ui/button"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"; import { Download, Calendar } from "lucide-react"; import { Dialog, DialogTrigger, DialogContent, DialogTitle, DialogDescription } from "@/components/ui/dialog"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; export default function LearningPlanDashboard() { const [progress, setProgress] = useState(60); const [schedule, setSchedule] = useState([ { subject: "경영학 원론", date: "2025-03-20" }, { subject: "마케팅 개론", date: "2025-04-05" }, ]); return (
{/* 학습자 정보 카드 */}

📌 학습자 개요

이름: 홍길동

현재 학점: 84 / 140학점

목표: 경영학 학위 취득

현재 학습 진행률: {progress}%

{/* 학점 및 과목 추천 테이블 */}

📖 추천 학습 경로

과목명 필수 여부 학점 상태 경영학 원론 필수 3학점 수강 중 마케팅 개론 선택 3학점 신청 필요
{/* 학습 일정 관리 */}

📅 학습 일정

과목명 예정 수강일 {schedule.map((item, index) => ( {item.subject} {item.date} ))}
{/* 다운로드 및 일정 관리 */}

📌 학습 일정 및 알림

📅 학습 일정 추가 새로운 학습 일정을 설정하세요.
); }
import { useState } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"; import { Download, Calendar, Users, Layers } from "lucide-react"; export default function AICreditPlanDashboard() { const [user, setUser] = useState({ name: "홍길동", credits: 84, goal: "경영학 학위 취득" }); const [plan, setPlan] = useState([ { subject: "경영학 원론", status: "수강 중", credit: 3 }, { subject: "마케팅 개론", status: "신청 필요", credit: 3 }, ]); const [schedule, setSchedule] = useState([ { subject: "경영학 원론", date: "2025-03-20" }, { subject: "마케팅 개론", date: "2025-04-05" }, ]); return (
{/* 메인 대시보드 */}

📌 AI 학점비서 대시보드

학습자의 학습 계획 및 진행 상태를 한눈에 확인하세요.

{/* 사용자 정보 */}

👤 학습자 정보

이름: {user.name}

현재 학점: {user.credits} / 140학점

목표: {user.goal}

{/* 학습 플랜 */}

📖 추천 학습 플랜

과목명 학점 상태 {plan.map((item, index) => ( {item.subject} {item.credit} 학점 {item.status} ))}
{/* 학습 일정 */}

📅 학습 일정

과목명 예정 수강일 {schedule.map((item, index) => ( {item.subject} {item.date} ))}
{/* 기능 버튼 */}

🚀 추가 기능

{/* B2B 서비스 섹션 */}

🏢 교육원 및 플래너 전용 서비스

AI 기반 학점 분석으로 플래너의 업무를 혁신하세요.

); }
카카오톡 채널 채팅하기 버튼