netagotchi-web-flasher / devices.html
S-Dreamer's picture
add internal pages - Follow Up Deployment
1b7a46e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Supported Devices - Netagotchi Firmware Web Flasher</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'netagotchi-purple': '#7e22ce',
'netagotchi-blue': '#3b82f6',
'netagotchi-dark': '#0f172a',
'netagotchi-light': '#e0e7ff'
}
}
}
}
</script>
<style type="text/css">
.glow-box {
box-shadow: 0 0 15px rgba(126, 34, 206, 0.7);
border-radius: 12px;
border: 1px solid rgba(126, 34, 206, 0.3);
}
.device-card {
transition: all 0.3s ease;
border: 1px solid rgba(126, 34, 206, 0.2);
}
.device-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(126, 34, 206, 0.4);
border-color: rgba(126, 34, 206, 0.5);
}
</style>
</head>
<body class="bg-netagotchi-dark text-gray-200 min-h-screen">
<div class="container mx-auto px-4 py-8">
<header class="text-center mb-12">
<div class="flex justify-center mb-6">
<div class="bg-netagotchi-purple w-16 h-16 rounded-full flex items-center justify-center">
<i class="fas fa-microchip text-white text-2xl"></i>
</div>
</div>
<h1 class="text-3xl md:text-4xl font-bold text-white mb-2">
Supported <span class="text-netagotchi-purple">Devices</span>
</h1>
<p class="text-netagotchi-light opacity-80 max-w-2xl mx-auto">
Explore the ESP32-based devices compatible with Netagotchi firmware
</p>
</header>
<div class="glow-box bg-gray-800 rounded-xl p-6 mb-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Cardputer -->
<div class="device-card bg-gray-900 rounded-xl p-6">
<div class="text-center mb-4">
<div class="bg-netagotchi-purple w-20 h-20 rounded-xl flex items-center justify-center mx-auto mb-3">
<i class="fas fa-credit-card text-white text-3xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Cardputer</h3>
<p class="text-sm opacity-80">Portable keyboard computer</p>
</div>
<div class="space-y-2">
<div class="flex justify-between text-sm">
<span>ESP32-S3</span>
<span class="text-green-400">βœ“ Supported</span>
</div>
<div class="flex justify-between text-sm">
<span>Display</span>
<span>240x135 IPS</span>
</div>
<div class="flex justify-between text-sm">
<span>Storage</span>
<span>16MB Flash</span>
</div>
<div class="flex justify-between text-sm">
<span>Features</span>
<span>Keyboard, SD Card</span>
</div>
</div>
</div>
<!-- CYD (Cheap Yellow Display) -->
<div class="device-card bg-gray-900 rounded-xl p-6">
<div class="text-center mb-4">
<div class="bg-yellow-500 w-20 h-20 rounded-xl flex items-center justify-center mx-auto mb-3">
<i class="fas fa-display text-white text-3xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">CYD</h3>
<p class="text-sm opacity-80">Cheap Yellow Display</p>
</div>
<div class="space-y-2">
<div class="flex justify-between text-sm">
<span>ESP32</span>
<span class="text-green-400">βœ“ Supported</span>
</div>
<div class="flex justify-between text-sm">
<span>Display</span>
<span>320x240 TFT</span>
</div>
<div class="flex justify-between text-sm">
<span>Storage</span>
<span>4MB Flash</span>
</div>
<div class="flex justify-between text-sm">
<span>Features</span>
<span>Touch, Buttons</span>
</div>
</div>
</div>
<!-- T-Embed -->
<div class="device-card bg-gray-900 rounded-xl p-6">
<div class="text-center mb-4">
<div class="bg-blue-500 w-20 h-20 rounded-xl flex items-center justify-center mx-auto mb-3">
<i class="fas fa-microchip text-white text-3xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">T-Embed</h3>
<p class="text-sm opacity-80">Advanced development board</p>
</div>
<div class="space-y-2">
<div class="flex justify-between text-sm">
<span>ESP32-S3</span>
<span class="text-green-400">βœ“ Supported</span>
</div>
<div class="flex justify-between text-sm">
<span>Display</span>
<span>320x240 ST7789</span>
</div>
<div class="flex justify-between text-sm">
<span>Storage</span>
<span>16MB Flash</span>
</div>
<div class="flex justify-between text-sm">
<span>Features</span>
<span>Camera, PSRAM</span>
</div>
</div>
</div>
</div>
</div>
<!-- Navigation Footer -->
<div class="flex justify-center gap-6 mt-8">
<a href="index.html" class="text-netagotchi-light hover:text-netagotchi-purple transition-colors text-sm">
<i class="fas fa-home mr-1"></i> Home
</a>
<a href="troubleshooting.html" class="text-netagotchi-light hover:text-netagotchi-purple transition-colors text-sm">
<i class="fas fa-wrench mr-1"></i> Troubleshooting
</a>
<a href="about.html" class="text-netagotchi-light hover:text-netagotchi-purple transition-colors text-sm">
<i class="fas fa-info-circle mr-1"></i> About
</a>
</div>
</div>
<script>
// Navigation active state
const currentPage = window.location.pathname.split('/').pop();
document.querySelectorAll('a[href="' + currentPage + '"]').forEach(link => {
link.classList.add('text-netagotchi-purple', 'font-semibold');
link.classList.remove('hover:text-netagotchi-purple');
});
</script>
</body>
</html>