File size: 1,503 Bytes
298c3e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>