Jacob Schmidt 9ad0ab9820 feat: Enhance UI and functionality across multiple addons
This commit introduces several improvements to the UI and functionality of various addons, including:

- **Admin Panel:** Updated header statistics layout and added payday functionality with rank-based amounts. Enhanced styling for better user experience.
- **Bank Addon:** Improved balance display with updated styling and structure for better readability.
- **Garage Addon:** Refined vehicle and maintenance statistics display with enhanced UI elements.
- **Locker Addon:** Updated storage and item statistics layout for improved clarity and usability.
- **Organization Addon:** Enhanced organization statistics display and improved transaction handling with better sorting and formatting.
- **Store Addon:** Updated payment method selection and improved overall styling for a more cohesive look.

These changes aim to provide a more intuitive and visually appealing user experience across the platform.
2025-04-19 14:51:11 -05:00

48 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FORGE - Garage</title>
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="header-content">
<h1>Garage</h1>
<div class="garage-stats">
<div class="stat-item">
<div class="stat-icon">🚗</div>
<div class="stat-info">
<span class="stat-label">Vehicles</span>
<span class="stat-value" id="vehicleCount">0</span>
</div>
</div>
<div class="stat-divider"></div>
<div class="stat-item">
<div class="stat-icon">🔧</div>
<div class="stat-info">
<span class="stat-label">Maintenance</span>
<span class="stat-value" id="maintenanceCount">0</span>
</div>
</div>
</div>
</div>
</header>
<main class="container">
<div class="category-filters" id="categoryFilters">
<!-- Categories will be populated dynamically -->
</div>
<div class="vehicles-grid" id="vehiclesGrid">
<!-- Vehicles will be populated dynamically -->
</div>
</main>
</body>
</html>