kai774's picture
how i can give you API?
be85300 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Hanzi Hunter</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#000000',
secondary: '#DC2626'
}
}
}
}
</script>
</head>
<body class="bg-black text-white min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-1 container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="text-center mb-12">
<h1 class="text-4xl md:text-6xl font-bold mb-4 bg-gradient-to-r from-white to-red-600 bg-clip-text text-transparent">
About Hanzi Hunter
</h1>
<p class="text-xl text-gray-400">Your ultimate Chinese vocabulary companion</p>
</section>
<!-- Content Section -->
<section class="max-w-4xl mx-auto">
<div class="bg-gray-900 rounded-2xl p-8 shadow-2xl border border-red-900">
<div class="grid md:grid-cols-2 gap-8 items-center">
<div>
<h2 class="text-3xl font-bold mb-4">What is Hanzi Hunter?</h2>
<p class="text-gray-300 mb-6">
Hanzi Hunter is an intelligent tool designed to help Chinese language learners
understand the complexity and usage of Chinese vocabulary.
</p>
<div class="space-y-4">
<div class="flex items-start">
<i data-feather="check-circle" class="w-5 h-5 text-red-500 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-white">HSK Level Detection</h3>
<p class="text-gray-400 text-sm">Instantly identify which official HSK level your vocabulary belongs to.</p>
</div>
</div>
<div class="flex items-start">
<i data-feather="check-circle" class="w-5 h-5 text-red-500 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-white">Usage Analysis</h3>
<p class="text-gray-400 text-sm">Learn whether words are formal, informal, common in speech, or mostly written.</p>
</div>
</div>
<div class="flex items-start">
<i data-feather="check-circle" class="w-5 h-5 text-red-500 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-white">Style Classification</h3>
<p class="text-gray-400 text-sm">Understand the appropriate context for using each word.</p>
</div>
</div>
</div>
</div>
<div class="text-center">
<i data-feather="compass" class="w-32 h-32 text-red-500 mx-auto"></i>
</div>
</div>
<!-- Features Grid -->
<div class="mt-12 grid md:grid-cols-2 gap-6">
<div class="bg-gray-800 p-6 rounded-xl border border-red-900">
<i data-feather="target" class="w-8 h-8 text-red-500 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Smart Detection</h3>
<p class="text-gray-400">Our algorithm analyzes Chinese characters and provides instant feedback on their HSK level and usage patterns.</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl border border-red-900">
<i data-feather="book" class="w-8 h-8 text-red-500 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Learning Focused</h3>
<p class="text-gray-400">Designed specifically for Chinese language learners at all levels.</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<!-- API Configuration -->
<script src="api-config.js"></script>
<!-- Component Scripts -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<!-- Main Script -->
<script src="script.js"></script>
<!-- Feather Icons -->
<script>
feather.replace();
</script>
</body>
</html>