Skip to content

Commit ac6e713

Browse files
committed
feat: complete shipment tracking system UI with dark/light mode, admin panel, and mock data integration
- Implemented OwnerTrackDetails and ShipmentDetails components with full state management - Added dark and light mode support to all shipment views and tracking pages - Integrated StatsCard, SearchAndFilters, ShipmentCard, and DataTable components - Connected mock shipment data for real-time tracking simulation - Fixed Admin Panel rendering and update flow - Added handling for loading states and error messages - Prepared groundwork for email templates and location update notifications
1 parent 279e6d6 commit ac6e713

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+9254
-827
lines changed

client/components.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
"prefix": ""
1212
},
1313
"aliases": {
14-
"components": "../components",
15-
"utils": "../../lib/utils",
16-
"ui": "../components/ui",
17-
"lib": "../../lib",
18-
"hooks": "../../hooks"
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
1919
},
2020
"iconLibrary": "lucide"
2121
}

client/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="en" class="dark">
33
<head>
44
<meta charset="UTF-8" />
55

0 commit comments

Comments
 (0)