client/addons/garage/ui/_site/index.html
Jacob Schmidt 69f8f037df
All checks were successful
Build / Build (push) Successful in 28s
refactor: Remove tasks.json and update documentation in store functions
This commit removes the `tasks.json` file from the `.vscode` directory. Additionally, it enhances the documentation in `fnc_buyItem.sqf` and `fnc_buyVehicle.sqf` by providing clearer descriptions of item and vehicle types. The `fnc_handlePurchase.sqf` has also been updated to improve variable scoping for better code clarity.
2025-04-19 11:12:53 -05:00

46 lines
1.4 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="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<h1>Garage</h1>
<div class="garage-stats">
<div class="stat-item">
<i>🚗</i>
<div>
<div>Vehicles</div>
<div id="vehicleCount">0</div>
</div>
</div>
<div class="stat-item">
<i>🔧</i>
<div>
<div>In Maintenance</div>
<div id="maintenanceCount">0</div>
</div>
</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>