bigpappic's picture
Please make sure that the web interface is very easy to use and not complicated at all we want our staff to be able to function very easily and make things flow
298c3e1 verified
raw
history blame
1.5 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help Center | Simple Canvas</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow p-6">
<div class="max-w-3xl mx-auto bg-white p-6 rounded-lg shadow">
<h1 class="text-2xl font-bold mb-6">Help Center</h1>
<div class="space-y-4">
<div>
<h3 class="font-medium text-lg">How to create a new project?</h3>
<p class="text-gray-600">Click "New Project" on the homepage or in the navigation bar.</p>
</div>
<div>
<h3 class="font-medium text-lg">Where are my saved projects?</h3>
<p class="text-gray-600">All projects are available under the "Projects" tab.</p>
</div>
<div>
<h3 class="font-medium text-lg">Need more help?</h3>
<p class="text-gray-600">Call our support team at (555) 123-4567</p>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html>