fix: nginx proxy /api/ vers backend + routes shopping et notes manquantes
- Ajoute location /api/ dans nginx.conf pour proxifier les requêtes API - Crée ShoppingPage et NotesPage (placeholders phase suivante) - Enregistre les routes /shopping et /notes dans App.tsx Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export default function NotesPage() {
|
||||
return (
|
||||
<div style={{ padding: 24, color: 'var(--ink-1)', fontFamily: 'var(--font-ui)' }}>
|
||||
<h1 style={{ fontSize: 24, fontWeight: 700, marginBottom: 8 }}>Notes</h1>
|
||||
<p style={{ color: 'var(--ink-3)' }}>Module en cours de développement — Phase 2b</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
export default function ShoppingPage() {
|
||||
return (
|
||||
<div style={{ padding: 24, color: 'var(--ink-1)', fontFamily: 'var(--font-ui)' }}>
|
||||
<h1 style={{ fontSize: 24, fontWeight: 700, marginBottom: 8 }}>Courses</h1>
|
||||
<p style={{ color: 'var(--ink-3)' }}>Module en cours de développement — Phase 3</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user