File size: 3,381 Bytes
d20e0bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About - RoboJacky's Ultimate Draft</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 = {
            darkMode: 'class',
            theme: {
                extend: {
                    colors: {
                        primary: {
                            500: '#6366f1',
                        },
                        secondary: {
                            500: '#8b5cf6',
                        }
                    }
                }
            }
        }
    </script>
</head>
<body class="bg-gray-100 dark:bg-gray-900 min-h-screen flex flex-col">
    <custom-navbar></custom-navbar>
    
    <div class="container mx-auto px-4 py-8 flex-grow">
        <div class="max-w-3xl mx-auto bg-white dark:bg-gray-800 rounded-lg shadow-lg p-8">
            <h1 class="text-3xl font-bold text-gray-800 dark:text-white mb-6">About RoboJacky's Ultimate Draft</h1>
            
            <div class="prose dark:prose-invert">
                <p class="mb-4">RoboJacky's Ultimate Draft is a powerful drafting tool designed for writers, developers, and creators who need a clean, distraction-free environment to capture their ideas.</p>
                
                <h2 class="text-2xl font-semibold mt-6 mb-4">Features</h2>
                <ul class="list-disc pl-6 mb-6">
                    <li class="mb-2">Real-time Markdown support</li>
                    <li class="mb-2">Dark/Light mode toggle</li>
                    <li class="mb-2">Cloud synchronization</li>
                    <li class="mb-2">Version history</li>
                    <li class="mb-2">Collaborative editing</li>
                </ul>
                
                <h2 class="text-2xl font-semibold mt-6 mb-4">Our Team</h2>
                <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
                    <div class="flex items-center space-x-4">
                        <img src="http://static.photos/people/200x200/1" alt="Team Member" class="w-16 h-16 rounded-full">
                        <div>
                            <h3 class="font-semibold">Alex Johnson</h3>
                            <p class="text-gray-600 dark:text-gray-400">Founder & Lead Developer</p>
                        </div>
                    </div>
                    <div class="flex items-center space-x-4">
                        <img src="http://static.photos/people/200x200/2" alt="Team Member" class="w-16 h-16 rounded-full">
                        <div>
                            <h3 class="font-semibold">Sam Wilson</h3>
                            <p class="text-gray-600 dark:text-gray-400">UX Designer</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    
    <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>
</body>
</html>