FilipeR's picture
Apk
fa9faad verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpellWiz - Android Autocorrect</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
<style>
.text-gradient {
background: linear-gradient(45deg, #6EE7B7, #3B82F6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.typo-animation {
animation: typoPulse 2s infinite;
}
@keyframes typoPulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen" id="vanta-bg">
<div class="container mx-auto px-4 py-12">
<!-- Hero Section -->
<div class="flex flex-col items-center justify-center text-center py-20">
<div class="mb-8">
<i data-feather="zap" class="w-16 h-16 text-yellow-400 mx-auto"></i>
</div>
<h1 class="text-5xl md:text-6xl font-bold mb-6">
<span class="text-gradient">SpellWiz</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto">
Magical autocorrect that learns your writing style ✨
</p>
<!-- Demo Input -->
<div class="w-full max-w-md mb-12">
<div class="relative bg-gray-800 rounded-xl p-6 shadow-2xl border border-gray-700">
<div class="flex items-center mb-4">
<div class="flex space-x-2 mr-4">
<span class="w-3 h-3 rounded-full bg-red-500"></span>
<span class="w-3 h-3 rounded-full bg-yellow-500"></span>
<span class="w-3 h-3 rounded-full bg-green-500"></span>
</div>
<p class="text-gray-400 text-sm">Android Keyboard</p>
</div>
<div class="bg-gray-900 rounded-lg p-4 h-40 overflow-auto">
<p class="text-left mb-4 text-gray-300">
<span class="text-red-400">Typing</span> is hard when you're in a hurry...
</p>
<p class="text-left text-green-400">
<span class="typo-animation">Typing</span> is easy with SpellWiz!
</p>
</div>
<div class="mt-4 flex space-x-2 overflow-x-auto">
<span class="inline-block px-3 py-1 bg-gray-700 rounded-full text-sm text-gray-300">Suggestions</span>
<span class="inline-block px-3 py-1 bg-blue-600 rounded-full text-sm text-white">Typing</span>
<span class="inline-block px-3 py-1 bg-gray-700 rounded-full text-sm text-gray-300">Texting</span>
<span class="inline-block px-3 py-1 bg-gray-700 rounded-full text-sm text-gray-300">Writing</span>
</div>
</div>
</div>
<!-- Download CTA -->
<div class="flex flex-col sm:flex-row gap-4 mb-16">
<a href="download.html" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-4 px-8 rounded-lg flex items-center justify-center transition-all duration-300 transform hover:scale-105">
<i data-feather="download" class="mr-2"></i>
Download APK (v1.0.0)
</a>
<a href="#features" class="bg-gray-800 hover:bg-gray-700 text-white font-bold py-4 px-8 rounded-lg flex items-center justify-center transition-all duration-300">
<i data-feather="info" class="mr-2"></i>
Learn More
</a>
</div>
</div>
<!-- Features Section -->
<div id="features" class="py-12">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">Magical Features</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-800 p-6 rounded-xl border border-gray-700 hover:border-blue-500 transition-all duration-300">
<div class="w-12 h-12 bg-blue-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="book-open" class="w-6 h-6 text-blue-400"></i>
</div>
<h3 class="text-xl font-bold mb-2">Context-Aware</h3>
<p class="text-gray-400">
Understands the meaning behind your words for smarter corrections that fit your sentences perfectly.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-800 p-6 rounded-xl border border-gray-700 hover:border-purple-500 transition-all duration-300">
<div class="w-12 h-12 bg-purple-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="user" class="w-6 h-6 text-purple-400"></i>
</div>
<h3 class="text-xl font-bold mb-2">Personalized</h3>
<p class="text-gray-400">
Learns your unique writing style, slang, and frequently used words to become your perfect typing companion.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-800 p-6 rounded-xl border border-gray-700 hover:border-green-500 transition-all duration-300">
<div class="w-12 h-12 bg-green-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="battery-charging" class="w-6 h-6 text-green-400"></i>
</div>
<h3 class="text-xl font-bold mb-2">Lightweight</h3>
<p class="text-gray-400">
Tiny footprint with minimal battery usage. Works smoothly even on older Android devices.
</p>
</div>
</div>
</div>
<!-- Screenshots -->
<div class="py-12">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">See the Magic</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="overflow-hidden rounded-xl border-2 border-gray-700">
<img src="http://static.photos/technology/640x360/1" alt="SpellWiz in action" class="w-full h-auto object-cover hover:scale-105 transition-transform duration-300">
</div>
<div class="overflow-hidden rounded-xl border-2 border-gray-700">
<img src="http://static.photos/technology/640x360/2" alt="SpellWiz settings" class="w-full h-auto object-cover hover:scale-105 transition-transform duration-300">
</div>
<div class="overflow-hidden rounded-xl border-2 border-gray-700">
<img src="http://static.photos/technology/640x360/3" alt="SpellWiz suggestions" class="w-full h-auto object-cover hover:scale-105 transition-transform duration-300">
</div>
</div>
</div>
<!-- Footer -->
<footer class="py-12 border-t border-gray-800 mt-12">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center">
<i data-feather="zap" class="w-8 h-8 text-yellow-400 mr-2"></i>
<span class="text-2xl font-bold text-gradient">SpellWiz</span>
</div>
<p class="text-gray-500 mt-2">Make every word count ✍️</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-feather="github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-feather="mail"></i>
</a>
</div>
</div>
<div class="mt-8 text-center text-gray-600 text-sm">
<p>© 2023 SpellWiz. All spells reserved.</p>
</div>
</footer>
</div>
<script>
// Initialize Vanta.js background
VANTA.WAVES({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x1e3a8a,
shininess: 35.00,
waveHeight: 15.00,
waveSpeed: 0.75,
zoom: 0.65
});
// Initialize feather icons
feather.replace();
// Typing animation for demo text
setTimeout(() => {
const typoElement = document.querySelector('.typo-animation');
if (typoElement) {
typoElement.style.animation = 'none';
void typoElement.offsetWidth; // trigger reflow
typoElement.style.animation = 'typoPulse 2s infinite';
}
}, 1000);
</script>
</body>
</html>