forked from izu/student-web-if-development-kit
20 lines
650 B
HTML
20 lines
650 B
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ACAAB — Dev Preview</title>
|
|
<style>
|
|
#dev-banner {
|
|
background: #feb401; color: #003150; font-size: 11px; font-weight: 700;
|
|
text-align: center; padding: 6px; letter-spacing: .05em; position: sticky; top: 0; z-index: 999;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="dev-banner">⚡ DEV MODE — Navbar & footer tidak tampil di sini. Gunakan kit dev server (root) untuk preview lengkap.</div>
|
|
<div id="root"></div>
|
|
<script type="module" src="./main.tsx"></script>
|
|
</body>
|
|
</html>
|