<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hello, Mizu</title>
<style>
body {
font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
p {
font-size: 1rem;
color: #555;
}
</style>
</head>
<body>
<h1>Hello, Mizu!</h1>
<p>This page is served directly from the public folder.</p>
</body>
</html>