Help
RSS
API
Feed
Maltego
Contact
Domain > africanheat.co.ke
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2021-08-22
174.136.57.78
(
ClassC
)
2026-01-06
169.239.181.174
(
ClassC
)
Port 443
HTTP/1.1 200 OKServer: nginxDate: Tue, 06 Jan 2026 10:45:46 GMTContent-Type: text/htmlContent-Length: 8242Last-Modified: Thu, 18 Dec 2025 15:27:04 GMTConnection: keep-aliveVary: Accept-EncodingETag: 69441d48-2032Accept-Ranges: bytes !DOCTYPE html>html langen>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>Coming Soon/title> script srchttps://cdn.tailwindcss.com>/script> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css> script> tailwind.config { theme: { extend: { colors: { primary: #f8fafc, // Slate 50 secondary: #020617, // Slate 950 accent: #94a3b8, // Slate 400 fire: #f59e0b, // Amber for fire highlights }, animation: { float: float 6s ease-in-out infinite, }, keyframes: { float: { 0%, 100%: { transform: translateY(0) }, 50%: { transform: translateY(-20px) }, } } } } } /script> style> /* Custom Glassmorphism & Background */ body { background-color: #020617; /* Deep Slate/Black */ font-family: Inter, sans-serif; color: white; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; /* Prevent scrollbars from canvas */ } /* Canvas for Flame Effect */ #fireCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; } .glass-panel { background: rgba(20, 20, 25, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); z-index: 10; } .gradient-text { /* Warm Fire Gradient for text */ background: linear-gradient(to right, #fbbf24, #f87171, #ef4444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } /style>/head>body classrelative> !-- The Fire Effect Canvas --> canvas idfireCanvas>/canvas> !-- Warm Glow Background Gradient (CSS Overlay) --> div classfixed inset-0 bg-gradient-to-t from-orange-900/40 via-transparent to-transparent pointer-events-none z-0> /div> !-- Main Content Wrapper --> main classflex-grow flex items-center justify-center p-4 sm:p-6 lg:p-8 z-10 w-full> !-- Glass Card --> div classglass-panel w-full max-w-4xl rounded-3xl p-8 md:p-12 lg:p-16 text-center shadow-2xl relative overflow-hidden> !-- Top sheen effect --> div classabsolute top-0 left-0 w-full h-1 bg-gradient-to-r from-transparent via-orange-200/20 to-transparent> /div> !-- Logo Section --> div classmb-10 relative group> !-- Warm Glow behind logo --> div classabsolute -inset-1 bg-gradient-to-r from-orange-600 via-red-600 to-orange-600 rounded-lg blur opacity-20 group-hover:opacity-40 transition duration-1000 group-hover:duration-200> /div> div classrelative bg-black/60 rounded-lg p-6 inline-block border border-orange-500/20> img srclogo improved.png altBrand Logo classh-24 md:h-32 w-auto object-contain mx-auto onerrorthis.onerrornull; this.parentElement.innerHTMLdiv class\flex flex-col items-center justify-center h-20 w-64 text-gray-400\>i class\fas fa-fire mb-2 text-2xl text-orange-500\>/i>span class\text-xs\>logo improved.jpg/span>/div>> /div> /div> !-- Headline --> h1 classtext-4xl md:text-6xl font-extrabold tracking-tight mb-6 animate-float> Were Building br/> span classgradient-text>Something Hot/span> /h1> !-- Subheadline --> p classtext-lg md:text-xl text-gray-300 mb-10 max-w-2xl mx-auto leading-relaxed font-light> Our new platform is currently heating up. We are working hard to bring you a modern experience that redefines quality. /p> /div> /main> !-- Footer --> footer classp-6 text-center text-gray-500 text-sm z-10 relative> p>© 2025 African Heat Ltd. All rights reserved./p> /footer> !-- Fire Effect Script --> script> const canvas document.getElementById(fireCanvas); const ctx canvas.getContext(2d); let width, height; let particles ; // Resize handling function resize() { width canvas.width window.innerWidth; height canvas.height window.innerHeight; } window.addEventListener(resize, resize); resize(); class Particle { constructor() { this.reset(true); } reset(initial false) { // Start from bottom this.x Math.random() * width; this.y initial ? Math.random() * height : height + Math.random() * 50; // Random upward velocity this.vy -1 - Math.random() * 2; this.vx (Math.random() - 0.5) * 1; // Random size this.size Math.random() * 3 + 1; // Color properties (Fire palette: Red -> Orange -> Yellow -> Fade) this.life Math.random() * 100 + 50; this.maxLife this.life; this.hue Math.random() * 30 + 10; // 10-40 (Orange/Yellow range) } update() { this.x + this.vx; this.y + this.vy; this.life--; // Wiggle effect this.vx + (Math.random() - 0.5) * 0.1; // Reset if dead or off screen if (this.life 0 || this.y -50) { this.reset(); } } draw() { const opacity this.life / this.maxLife; ctx.beginPath(); ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2); // Color logic: Bright yellow at bottom, turning red/dark as it rises const currentHue this.hue - (1 - opacity) * 20; // Shift to red as it dies ctx.fillStyle `hsla(${currentHue}, 100%, 50%, ${opacity * 0.6})`; ctx.shadowBlur 10; ctx.shadowColor `hsla(${currentHue}, 100%, 50%, 1)`; ctx.fill(); } } // Initialize particles function init() { const particleCount Math.min(width * 0.2, 200); // Adjust count based on screen width for (let i 0; i particleCount; i++) { particles.push(new Particle()); } } function animate() { // Clear with trail effect ctx.fillStyle rgba(2, 6, 23, 0.2); // Very dark blue/black trail ctx.fillRect(0, 0, width, height); // Add global composition for glow ctx.globalCompositeOperation screen; particles.forEach(p > { p.update(); p.draw(); }); // Reset composition ctx.globalCompositeOperation source-over; requestAnimationFrame(animate); } init(); animate(); /script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]