Files
floorithardwoodfloors.com/500.html
T
Concept Agent 88ed4e6bda Align with AM stack SOPs: required files, nginx hardening, mobile CSS
- Add robots.txt, sitemap.xml (16 pages), 404.html, 500.html per SOP
- nginx: allow robots.txt/sitemap.xml explicitly, fix error_page to 404.html, deny _template.html, remove txt from deny list, fix API proxy comment
- Convert residential.png to residential.webp per image SOP
- components.css: mobile nav breakpoint 768→1023px, 360px ultra-narrow query, overflow-x:clip, inline grid collapse overrides
- blog/index.html: placeholder blog listing page with 3 article cards

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-27 18:53:35 +02:00

91 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Error | Floor It Hardwood Floors</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: 'Inter', sans-serif;
background-color: #0c0805;
color: #f0e8da;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
}
.container {
text-align: center;
max-width: 600px;
}
.error-code {
font-size: 120px;
font-weight: 800;
color: #c88b2a;
line-height: 1;
margin-bottom: 20px;
}
h1 {
font-size: 36px;
font-weight: 600;
margin-bottom: 20px;
}
p {
font-size: 16px;
font-weight: 400;
margin-bottom: 40px;
line-height: 1.6;
}
.button-group {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 60px;
}
a.btn {
display: inline-block;
padding: 12px 30px;
background-color: #c88b2a;
color: #0c0805;
text-decoration: none;
font-weight: 600;
font-size: 14px;
border-radius: 4px;
transition: background-color 0.3s;
}
a.btn:hover {
background-color: #d99e3d;
}
.footer {
font-size: 14px;
color: #c88b2a;
}
</style>
</head>
<body>
<div class="container">
<div class="error-code">500</div>
<h1>Something Went Wrong</h1>
<p>We're experiencing a temporary issue. Please try again in a moment or contact us directly.</p>
<div class="button-group">
<a href="/" class="btn">Go to Homepage</a>
<a href="/contact/" class="btn">Contact Us</a>
</div>
<div class="footer">
<p>(716) 602-1429</p>
</div>
</div>
</body>
</html>