mirror of
https://github.com/nethunterzist/trendyol-analiz
synced 2026-07-01 17:37:04 +00:00
- Add Hidden Champions tab with filterable product table - Add Opportunity Map tab with scatter chart (supply/demand quadrants) - Add Sales Funnel section to Overview with conversion rates - Add Price Distribution histogram with mean/median lines - Add Competition Score gauge (0-100) with 4 sub-metrics - Add Excel export (3-sheet xlsx) and Print buttons to dashboard - Add Report Comparison page with KPI diff table and brand bar chart - Add enrichment UI to ReportList with progress tracking - Add sidebar navigation with Karşılaştır route - Refactor UI: Layout, Sidebar, TopBar, KpiCard, SkeletonLoader components - Improve drill-down UX with visible pill buttons and tooltips Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
634 B
HTML
17 lines
634 B
HTML
<!doctype html>
|
|
<html lang="tr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
|
|
<title>Trendyol Analytics</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|