Spaces:
Running
Running
File size: 6,194 Bytes
3ae5740 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - CodeCanvas Wizardry</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="min-h-screen bg-gray-50">
<header class="bg-white bg-opacity-80 backdrop-blur-md shadow-sm sticky top-0 z-10">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center">
<i data-feather="code" class="text-indigo-500 mr-2"></i>
<h1 class="text-2xl font-bold text-gray-800">CodeCanvas Wizardry</h1>
</div>
<nav>
<ul class="flex space-x-6">
<li><a href="index.html" class="text-gray-600 hover:text-indigo-500 transition">Home</a></li>
<li><a href="docs.html" class="text-gray-600 hover:text-indigo-500 transition">Docs</a></li>
<li><a href="examples.html" class="text-gray-600 hover:text-indigo-500 transition">Examples</a></li>
<li><a href="faq.html" class="text-indigo-500 font-medium">FAQ</a></li>
<li><a href="contact.html" class="text-gray-600 hover:text-indigo-500 transition">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="container mx-auto px-4 py-12">
<h1 class="text-4xl font-bold mb-8">Frequently Asked Questions</h1>
<div class="max-w-3xl mx-auto">
<div class="bg-white rounded-xl shadow-sm mb-4 overflow-hidden">
<button class="w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">How do I get started with CodeCanvas Wizardry?</h3>
<i data-feather="chevron-down" class="text-gray-400 transition-transform duration-200"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">Getting started is easy! Just visit our <a href="docs.html" class="text-indigo-500 hover:underline">documentation</a> page and follow the installation guide for your platform. We provide step-by-step instructions for all major operating systems.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm mb-4 overflow-hidden">
<button class="w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">What programming languages are supported?</h3>
<i data-feather="chevron-down" class="text-gray-400 transition-transform duration-200"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">CodeCanvas Wizardry supports multiple languages including Python, JavaScript, Java, C++, and more. Check our <a href="docs.html" class="text-indigo-500 hover:underline">language support</a> section for a complete list and specific version requirements.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm mb-4 overflow-hidden">
<button class="w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">Is there a community forum or support channel?</h3>
<i data-feather="chevron-down" class="text-gray-400 transition-transform duration-200"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">Yes! We have an active community on <a href="#" class="text-indigo-500 hover:underline">Discord</a> and <a href="#" class="text-indigo-500 hover:underline">GitHub Discussions</a> where you can ask questions and get help from both the community and our core team.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm mb-4 overflow-hidden">
<button class="w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">How often are new features released?</h3>
<i data-feather="chevron-down" class="text-gray-400 transition-transform duration-200"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">We release minor updates monthly and major updates quarterly. You can check our <a href="#" class="text-indigo-500 hover:underline">release notes</a> for detailed information about each update.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm mb-4 overflow-hidden">
<button class="w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-medium">Can I contribute to the project?</h3>
<i data-feather="chevron-down" class="text-gray-400 transition-transform duration-200"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">Absolutely! We welcome contributions from the community. Please read our <a href="#" class="text-indigo-500 hover:underline">contribution guidelines</a> and check out the list of <a href="#" class="text-indigo-500 hover:underline">good first issues</a> if you're new to open source.</p>
</div>
</div>
</div>
</main>
<script>
// FAQ accordion functionality
document.querySelectorAll('.bg-white button').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
content.classList.toggle('hidden');
icon.style.transform = content.classList.contains('hidden') ? 'rotate(0deg)' : 'rotate(180deg)';
});
});
feather.replace();
</script>
</body>
</html> |