jukebox-vibe/web/index.html

19 lines
634 B
HTML
Raw Normal View History

<!DOCTYPE html>
2025-08-07 23:24:56 +02:00
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Soundboard</title>
<!-- No tailwind script injection to avoid collision with our custom CSS structural layout -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<script type="module" src="/src/main.tsx"></script>
</head>
2025-08-07 23:24:56 +02:00
<body>
<div id="root"></div>
</body>
2025-08-07 23:24:56 +02:00
</html>