mathmagic-visualizer / index.html
Fadlhasn's picture
انشئ موقع تعليمي للرياضيات حيث يعتمد على تحويل المفاهيم النظرية الى تصور ويمكن عرض الريياضيات بطريقة حيوية والتلاعب بها لفهمها اكثر
c04d49d verified
Raw
History Blame Contribute Delete
4.3 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chromatic Canvas</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 = {
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<section class="text-center mb-16">
<h1 class="text-5xl font-bold text-primary-700 mb-4">Chromatic Canvas</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">A vibrant playground of colors and design. Explore the beauty of undefined possibilities.</p>
</section>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all hover:shadow-xl hover:-translate-y-1">
<div class="h-48 bg-gradient-to-r from-primary-400 to-secondary-500"></div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Color Exploration</h3>
<p class="text-gray-600">Discover the endless combinations of our undefined color palette.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all hover:shadow-xl hover:-translate-y-1">
<div class="h-48 bg-gradient-to-r from-secondary-400 to-primary-500"></div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Design Freedom</h3>
<p class="text-gray-600">Create without constraints in our undefined theme environment.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all hover:shadow-xl hover:-translate-y-1">
<div class="h-48 bg-gradient-to-r from-primary-300 to-secondary-600"></div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Visual Harmony</h3>
<p class="text-gray-600">Experience the perfect balance of undefined elements.</p>
</div>
</div>
</div>
<section class="mt-20 bg-gradient-to-r from-primary-100 to-secondary-100 rounded-2xl p-8 md:p-12">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Ready to Explore?</h2>
<p class="text-lg text-gray-700 mb-8">Dive into our undefined world of design possibilities and create something truly unique.</p>
<button class="bg-primary-600 hover:bg-primary-700 text-white font-medium py-3 px-8 rounded-full transition-all shadow-md hover:shadow-lg">
Get Started
</button>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>