<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Welcome!</title>
<!-- Tailwind CSS for
styling -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts: Inter
-->
<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=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<style>
/* Use the Inter font family */
body {
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="bg-gray-900
text-white flex items-center justify-center min-h-screen">
<!-- Main container with a
subtle gradient background -->
<div class="w-full max-w-4xl mx-auto
p-8">
<div class="bg-gray-800/50 backdrop-blur-sm border border-gray-700/60 rounded-2xl shadow-2xl p-8 md:p-12 text-center">
<!-- Main Heading -->
<h1 class="text-4xl md:text-6xl font-bold bg-clip-text text-transparent bg-gradient-to-r
from-blue-400 to-teal-300 pb-2">
Domain for Sale
</h1>
<!-- Subheading -->
<p class="mt-4 text-lg md:text-xl
text-gray-300">
Please direct inquiries to admin@far-rose.com!
</p>
<!-- Divider -->
<div class="my-8 border-t border-gray-700
w-1/4 mx-auto"></div>
<!-- Informational Text
-->
<p class="text-gray-400 max-w-2xl
mx-auto">
This page is being served as a
placeholder by Cloudflare. The owner of this domain has not yet configured a
website for this address.
</p>
<!-- Optional: Contact Link
-->
<div class="mt-10">
<a href="mailto:contact@example.com"
class="inline-block
bg-blue-600 hover:bg-blue-700 text-white font-semibold py-3 px-6 rounded-lg
shadow-lg transition-transform transform hover:scale-105">
Contact Us
</a>
</div>
</div>
<!-- Footer -->
<footer class="text-center mt-8 text-gray-500
text-sm">
<p>© All Rights Reserved.</p>
<p class="mt-1">Secured and accelerated by
Cloudflare.</p>
</footer>
</div>
</body>
</html>