free-coding-models 0.3.69 → 0.3.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,8 +8,8 @@
8
8
  <link rel="preconnect" href="https://fonts.googleapis.com">
9
9
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
10
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
11
- <script type="module" crossorigin src="/assets/index-CugpJNf7.js"></script>
12
- <link rel="stylesheet" crossorigin href="/assets/index-DwztVNMT.css">
11
+ <script type="module" crossorigin src="/assets/index-GNK87eO5.js"></script>
12
+ <link rel="stylesheet" crossorigin href="/assets/index-CGN-0_A0.css">
13
13
  </head>
14
14
  <body>
15
15
  <div class="bg-grid"></div>
package/web/src/App.jsx CHANGED
@@ -20,6 +20,7 @@ import DetailPanel from './components/dashboard/DetailPanel.jsx'
20
20
  import ExportModal from './components/dashboard/ExportModal.jsx'
21
21
  import SettingsView from './components/settings/SettingsView.jsx'
22
22
  import AnalyticsView from './components/analytics/AnalyticsView.jsx'
23
+ import MapView from './components/map/MapView.jsx'
23
24
  import ToastContainer from './components/atoms/ToastContainer.jsx'
24
25
 
25
26
  let toastIdCounter = 0
@@ -128,6 +129,12 @@ export default function App() {
128
129
  </div>
129
130
  )}
130
131
 
132
+ {currentView === 'map' && (
133
+ <div className="view">
134
+ <MapView />
135
+ </div>
136
+ )}
137
+
131
138
  <Footer />
132
139
  </div>
133
140
 
@@ -8,6 +8,7 @@ const NAV_ITEMS = [
8
8
  { id: 'dashboard', icon: '▤', label: 'Dashboard' },
9
9
  { id: 'settings', icon: '⚙', label: 'Settings' },
10
10
  { id: 'analytics', icon: '▌▌', label: 'Analytics' },
11
+ { id: 'map', icon: '🌍', label: 'Map' },
11
12
  ]
12
13
 
13
14
  export default function Sidebar({ currentView, onNavigate, onToggleTheme }) {
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @file web/src/components/map/MapView.jsx
3
+ * @description WIP - Live map view showing users location and activity.
4
+ * @exports MapView → placeholder component for user map visualization
5
+ */
6
+ import styles from './MapView.module.css'
7
+
8
+ export default function MapView() {
9
+ return (
10
+ <div className={styles.container}>
11
+ <div className={styles.wip}>
12
+ <h1>WIP : map users live</h1>
13
+ <p>Coming soon...</p>
14
+ </div>
15
+ </div>
16
+ )
17
+ }
@@ -0,0 +1,25 @@
1
+ .container {
2
+ padding: 2rem;
3
+ width: 100%;
4
+ }
5
+
6
+ .wip {
7
+ display: flex;
8
+ flex-direction: column;
9
+ align-items: center;
10
+ justify-content: center;
11
+ min-height: 60vh;
12
+ text-align: center;
13
+ }
14
+
15
+ .wip h1 {
16
+ font-size: 2rem;
17
+ font-weight: 700;
18
+ color: var(--text-primary);
19
+ margin-bottom: 1rem;
20
+ }
21
+
22
+ .wip p {
23
+ font-size: 1.125rem;
24
+ color: var(--text-secondary);
25
+ }