26 lines
807 B
HTML
26 lines
807 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Young Pandas</title>
|
|
</head>
|
|
<body>
|
|
<!-- Loading Screen -->
|
|
<div id="loading-screen">
|
|
<div class="loading-container">
|
|
<div class="loading-spinner"></div>
|
|
<div class="loading-text" id="loading-text">Loading Experience...</div>
|
|
<div class="loading-progress">
|
|
<div class="loading-progress-bar" id="loading-progress-bar"></div>
|
|
</div>
|
|
<div class="loading-percentage" id="loading-percentage">0%</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="app"></div>
|
|
<script type="module" src="src/main.js"></script>
|
|
</body>
|
|
</html>
|