Refactor: Move index.html to root and serve assets from /public

This commit is contained in:
2025-12-13 11:01:48 +11:00
parent 9f9517da31
commit 8028bb22cd

View File

@@ -8,8 +8,8 @@
content="Advanced SMTP Tester - Test your SMTP configurations securely and easily." content="Advanced SMTP Tester - Test your SMTP configurations securely and easily."
/> />
<title>Advanced SMTP Tester</title> <title>Advanced SMTP Tester</title>
<link rel="icon" type="image/png" href="Logo.png" /> <link rel="icon" type="image/png" href="public/Logo.png" />
<link rel="stylesheet" href="styles.css" /> <link rel="stylesheet" href="public/styles.css" />
<!-- Fonts --> <!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.googleapis.com" />
@@ -28,7 +28,7 @@
<header class="header"> <header class="header">
<div class="header-content"> <div class="header-content">
<h1 class="title"> <h1 class="title">
<img src="Logo.png" alt="Logo" class="title-icon" /> <img src="public/Logo.png" alt="Logo" class="title-icon" />
SMTP Tester SMTP Tester
</h1> </h1>
<p class="subtitle"> <p class="subtitle">
@@ -161,6 +161,6 @@
</footer> </footer>
</div> </div>
<script src="script.js"></script> <script src="public/script.js"></script>
</body> </body>
</html> </html>