16 lines
542 B
HTML
16 lines
542 B
HTML
<!doctype html>
|
|
<html lang="hu">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0" /> -->
|
|
<title>Telefonkönyv</title>
|
|
</head>
|
|
<body class="flex flex-col overflow-x-hidden w-full">
|
|
<div id="app" class="flex flex-col w-full h-screen"></div>
|
|
<div class="felx flex-row bg-neutral-600 text-white">
|
|
<div class="flex w-fit justify-self-center">© Zombori Péter - 2025</div>
|
|
</div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|