<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frentix</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: #041F3B;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 24px;
}
.wrap {
max-width: 700px;
}
img {
width: 320px;
max-width: 90%;
height: auto;
margin-bottom: 24px;
}
h1 {
margin: 0 0 12px 0;
font-size: 32px;
}
p {
margin: 0 0 10px 0;
font-size: 18px;
line-height: 1.5;
}
.email {
margin-top: 20px;
color: #6FE7DD;
font-weight: bold;
}
a {
color: #6FE7DD;
text-decoration: none;
}
</style>
</head>
<body>
<div class="wrap">
<img src="frentix-logo.png" alt="Frentix logo">
<h1>Frentix</h1>
<p>Fast, local, reliable equipment rental.</p>
<p>Website coming soon.</p>
<p class="email"><a href="mailto:jonny@frentix.co.uk">jonny@frentix.co.uk</a></p>
</div>
</body>
</html>