chore(lint): Clean up and linting

This commit is contained in:
2023-07-06 01:35:13 +03:00
parent f642289650
commit add42bc2a3
7 changed files with 77 additions and 46 deletions

View File

@@ -1,7 +1,7 @@
document.addEventListener("DOMContentLoaded", () => {
const container = document.querySelector("h1");
const hostname = window.location.hostname || document.title;
const container = document.querySelector("h1");
const hostname = window.location.hostname || document.title;
container.textContent = hostname;
document.title = hostname;
container.textContent = hostname;
document.title = hostname;
});

View File

@@ -1,20 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<title>hi there!</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="app.css" rel="stylesheet" />
<script src="app.js"></script>
</head>
</head>
<body class="h-screen bg-gray-50">
<body class="h-screen bg-gray-50">
<div class="flex items-center justify-between h-screen px-8 py-16 mx-auto min-w-max max-w-7xl">
<h1 class="text-3xl font-extrabold tracking-tight text-gray-900">
hi there!
</h1>
<h1 class="text-3xl font-extrabold tracking-tight text-gray-900">hi there!</h1>
</div>
</body>
</body>
</html>