feat: implement PWA support with manifest and icons and add mobile-optimized bottom navigation

This commit is contained in:
sazzadulalambd
2026-05-06 16:38:57 +06:00
parent 849c6e56ba
commit 502e576fc1
10 changed files with 3408 additions and 190 deletions

21
public/manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "JAIBEN Mobility",
"short_name": "JAIBEN",
"description": "EV Rental Platform",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#2563eb",
"icons": [
{
"src": "/icon-192x192.svg",
"sizes": "192x192",
"type": "image/svg+xml"
},
{
"src": "/icon-512x512.svg",
"sizes": "512x512",
"type": "image/svg+xml"
}
]
}