Files
web-page/src/pages/lotto/Lotto.jsx
gahusb a846ab89e6 feat(lotto): 헤더 카드를 자율 학습 시스템으로 업데이트
Why: v1(능동 시그널) + v2(자율 가중치 학습) + v2.1(활동 가시화)로
시스템이 진화한 것을 반영. 기존 '시뮬레이션 추천 시스템' 3 bullet
→ '자율 학습 시뮬레이션' 4 bullet (학습 루프·시그널·시뮬·AI 큐레이터).
2026-05-23 02:43:47 +09:00

38 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react';
import { useLocation } from 'react-router-dom';
import Functions from './Functions';
import './Lotto.css';
const Lotto = () => {
const location = useLocation();
const initialTab = location.pathname.endsWith('/evolver') ? 'evolver' : 'briefing';
return (
<div className="lotto">
<header className="lotto-header">
<div>
<p className="lotto-kicker">Playground</p>
<h1>Lotto Lab</h1>
<p className="lotto-sub">
로또 추천 기록 관리 도구입니다. 다양한 알고리즘을 통해 번호를 추천받고,
추첨 기록을 손쉽게 관리할 있습니다.
</p>
</div>
<div className="lotto-card">
<p className="lotto-card__title">자율 학습 시뮬레이션</p>
<ul>
<li>매주 6가지 가중치 시도 토요일 회고로 best base 학습</li>
<li>능동 시그널 모니터링 (Sim·Drift·Confidence z-score) + 텔레그램 알림</li>
<li>4시간마다 몬테카를로 20,000 후보 × 5 점수 가중 평가</li>
<li>AI 큐레이터 + ·콜드·오버듀 통계 분석</li>
</ul>
</div>
</header>
<Functions initialTab={initialTab} />
</div>
);
};
export default Lotto;