diff --git a/frontend/Front.jsx b/frontend/Front.jsx index 661fd6f..b8aa73f 100644 --- a/frontend/Front.jsx +++ b/frontend/Front.jsx @@ -930,7 +930,7 @@ export default function PickupDeliveryUI() { }; return ( -
+
{/* Navigation Bar avec titre intégré */}
{/* Home View */} {activeTab === 'home' && !showMapUpload && ( -
-

- Bienvenue sur votre plateforme de gestion de tournées de livraison à vélo ! +
+

+ Bienvenue sur votre plateforme de gestion de tournées de livraison à vélo

-

+

Cliquez sur l'icône de localisation pour charger une carte.

@@ -1016,7 +1016,7 @@ export default function PickupDeliveryUI() { {/* Ligne principale : Carte + Panneau d'informations */}
{/* Carte sur la gauche - plus grande */} -
+
{/* Tableau de tournée ou onglets multi-tours */} -
-

+
+

{tourData ? (Array.isArray(tourData) && tourData.length > 1 ? 'Tournées Multi-Coursiers' : 'Tournée Calculée') : 'Informations'}

@@ -1118,7 +1118,7 @@ export default function PickupDeliveryUI() {
{/* Boutons d'action */} -
+
{!tourData ? ( // Avant calcul de tournée : Sélecteur + Boutons
diff --git a/frontend/index.html b/frontend/index.html index 7a35fdd..dfe7506 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,6 +4,23 @@ Pickup & Delivery + + + + diff --git a/frontend/main.jsx b/frontend/main.jsx index 706c014..68222aa 100644 --- a/frontend/main.jsx +++ b/frontend/main.jsx @@ -1,6 +1,7 @@ import React from 'react' import ReactDOM from 'react-dom/client' import PickupDeliveryUI from './Front.jsx' +import './src/styles/typography.css' ReactDOM.createRoot(document.getElementById('root')).render( diff --git a/frontend/src/components/Navigation.jsx b/frontend/src/components/Navigation.jsx index 6085a26..213bc2b 100644 --- a/frontend/src/components/Navigation.jsx +++ b/frontend/src/components/Navigation.jsx @@ -7,14 +7,18 @@ import Icon from './Icon'; */ export default function Navigation({ activeTab, onTabChange, showMapMessage, hasMap, onLoadDeliveryRequests, onRestoreTour }) { return ( -