48 lines
2.2 KiB
HTML
48 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<!-- Mobile viewport optimized for Android and iOS -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, minimum-scale=1.0, user-scalable=yes, viewport-fit=cover" />
|
|
|
|
<!-- Meta tags for mobile app behavior -->
|
|
<meta name="description" content="Mobile warehouse inventory management system with document generation and barcode scanning" />
|
|
<meta name="keywords" content="warehouse, inventory, management, mobile, android, ios, barcode, scanner" />
|
|
<meta name="author" content="WarehouseTrack Pro" />
|
|
|
|
<!-- PWA Manifest -->
|
|
<link rel="manifest" href="/manifest.json" />
|
|
|
|
<!-- Mobile browser theme colors -->
|
|
<meta name="theme-color" content="#2563eb" />
|
|
<meta name="msapplication-TileColor" content="#2563eb" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<meta name="apple-mobile-web-app-title" content="WarehouseTrack Pro" />
|
|
|
|
<!-- iOS Safari specific -->
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="apple-touch-fullscreen" content="yes" />
|
|
|
|
<!-- Android Chrome specific -->
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
|
|
<!-- Disable automatic phone number detection -->
|
|
<meta name="format-detection" content="telephone=no, date=no, email=no, address=no" />
|
|
|
|
<!-- Preload critical fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
|
|
|
|
<!-- App title -->
|
|
<title>WarehouseTrack Pro - Mobile Inventory Management</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<!-- This is a replit script which adds a banner on the top of the page when opened in development mode outside the replit environment -->
|
|
<script type="text/javascript" src="https://replit.com/public/js/replit-dev-banner.js"></script>
|
|
</body>
|
|
</html> |