Skip to content

Instantly share code, notes, and snippets.

@maylortaylor
Created May 23, 2026 00:17
Show Gist options
  • Select an option

  • Save maylortaylor/0f37b0a837dd5c833926af7f897f1bd5 to your computer and use it in GitHub Desktop.

Select an option

Save maylortaylor/0f37b0a837dd5c833926af7f897f1bd5 to your computer and use it in GitHub Desktop.
Nicole Estima — Coming Soon maintenance page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nicole Estima — Coming Soon</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: #F3E8DE;
color: #254C42;
font-family: 'Libre Baskerville', Georgia, serif;
letter-spacing: -0.04em;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.container {
text-align: center;
max-width: 480px;
}
.divider {
width: 48px;
height: 2px;
background-color: #B5613E;
margin: 1.5rem auto;
}
h1 {
font-size: clamp(2rem, 6vw, 3rem);
font-weight: 700;
line-height: 1.15;
color: #254C42;
}
.subtitle {
font-size: clamp(0.9rem, 2.5vw, 1.1rem);
font-style: italic;
color: #B5613E;
margin-bottom: 0.25rem;
}
.message {
font-size: clamp(0.95rem, 2.5vw, 1.05rem);
line-height: 1.7;
color: #3A7060;
margin-top: 1.5rem;
}
</style>
</head>
<body>
<div class="container">
<p class="subtitle">Nicole Estima</p>
<h1>Coming Soon</h1>
<div class="divider"></div>
<p class="message">Something new is on the way.<br>Check back shortly.</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment