lonestar108's picture
Failed to load resource: the server responded with a status of 500 ()Understand this error
4b421bf 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>MagneTastic 3000 - About</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>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<div class="max-w-3xl mx-auto">
<h1 class="text-3xl font-bold mb-6">About MagneTastic 3000</h1>
<div class="bg-gray-800 rounded-xl p-6 shadow-lg mb-6">
<h2 class="text-2xl font-semibold mb-4">What is this?</h2>
<p class="mb-4">MagneTastic 3000 is an interactive magnetic field visualization tool that helps you understand how magnetic fields work through hands-on simulation.</p>
<p>Built with modern web technologies including Canvas API and Web Components.</p>
</div>
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-2xl font-semibold mb-4">Features</h2>
<div class="grid md:grid-cols-2 gap-4">
<div class="flex items-start space-x-3">
<i data-feather="move" class="text-primary-500"></i>
<div>
<h3 class="font-medium">Interactive Magnets</h3>
<p class="text-sm text-gray-400">Drag and position magnets freely</p>
</div>
</div>
<div class="flex items-start space-x-3">
<i data-feather="sliders" class="text-secondary-500"></i>
<div>
<h3 class="font-medium">Adjustable Parameters</h3>
<p class="text-sm text-gray-400">Control strength and number</p>
</div>
</div>
<div class="flex items-start space-x-3">
<i data-feather="eye" class="text-purple-500"></i>
<div>
<h3 class="font-medium">Real-time Visualization</h3>
<p class="text-sm text-gray-400">See field lines update instantly</p>
</div>
</div>
<div class="flex items-start space-x-3">
<i data-feather="moon" class="text-yellow-500"></i>
<div>
<h3 class="font-medium">Dark Mode</h3>
<p class="text-sm text-gray-400">Easy on the eyes</p>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="components/navbar.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>