<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="styles.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Tauri App</title>
<script type="module" src="main.js" defer></script>
</head>
<body>
<main class="container">
<h1>Welcome to Tauri</h1>
<section>
<p>
Printer status: <span id="printerStatusValue" style="font-weight: bold">Waiting...</span>
</p>
<button id="print_btn" name="print">PRINTER TEST</button>
</section>
</main>
</body>
</html>