22 lines
701 B
HTML
22 lines
701 B
HTML
<!-- file: kb_app/frontend/splash.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Loading ... Khadhroony Solana BoBot</title>
|
|
<link rel="stylesheet" href="sass/splash.scss" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="splash-container">
|
|
<img id="splash-image" src="imgs/splash.png" alt="Application Loading" />
|
|
<div id="app-name">Khadhroony</div>
|
|
<div id="debug-info"></div>
|
|
<div id="messages-container"></div>
|
|
</div>
|
|
<script type="module" src="ts/splash.ts" defer></script>
|
|
</body>
|
|
|
|
</html> |