File size: 16,342 Bytes
7a4794e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Social Ninja | Passive Income & Developer Tools</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .drawing-canvas {
            border: 2px solid #e2e8f0;
            background-color: white;
            cursor: crosshair;
        }
        .tool-btn.active {
            background-color: #6366f1;
            color: white;
        }
        .sidebar-item.active {
            background-color: #e0e7ff;
            border-left: 4px solid #6366f1;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        #canvas-container {
            position: relative;
        }
        #preview-box {
            transition: all 0.3s ease;
        }
    </style>
</head>
<body class="font-sans bg-gray-50">
    <!-- Lead Magnet Section -->
    <section id="lead-magnet" class="py-16 bg-gradient-to-r from-indigo-500 to-purple-600 text-white">
        <div class="container mx-auto px-4">
            <div class="max-w-3xl mx-auto text-center">
                <h1 class="text-4xl md:text-5xl font-bold mb-6">Unlock the Secrets to Online Passive Income</h1>
                <p class="text-xl mb-8">Get our FREE eBook and discover how to build multiple income streams while you sleep!</p>
                <div class="bg-white rounded-lg shadow-xl p-8 max-w-md mx-auto">
                    <h3 class="text-2xl font-bold text-gray-800 mb-4">Get Your Free eBook</h3>
                    <form id="ebook-form" class="space-y-4">
                        <input type="text" placeholder="Your Name" class="w-full px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800">
                        <input type="email" placeholder="Your Email" class="w-full px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800">
                        <button type="submit" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-4 rounded transition duration-300">
                            Get Free Secret eBook
                        </button>
                    </form>
                </div>
            </div>
        </div>
    </section>

    <!-- Landing Page with Membership Tiers -->
    <section id="membership" class="py-20 bg-gray-100">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-12">Choose Your Membership Tier</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
                <!-- Tier 1 -->
                <div class="bg-white rounded-xl shadow-lg overflow-hidden transform transition duration-500 hover:scale-105">
                    <div class="px-6 py-8">
                        <div class="text-center">
                            <h3 class="text-2xl font-bold text-gray-800 mb-2">Free Tier</h3>
                            <div class="flex justify-center items-baseline my-4">
                                <span class="text-4xl font-extrabold text-gray-800">$0</span>
                                <span class="ml-1 text-gray-600">/month</span>
                            </div>
                        </div>
                        <ul class="space-y-3 mb-8">
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>Basic Drawing Canvas</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>5MB Storage</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>Community Support</span>
                            </li>
                        </ul>
                        <button onclick="selectTier('free')" class="w-full bg-gray-200 hover:bg-gray-300 text-gray-800 font-bold py-3 px-4 rounded transition duration-300">
                            Get Started
                        </button>
                    </div>
                </div>

                <!-- Tier 2 -->
                <div class="bg-white rounded-xl shadow-lg overflow-hidden transform transition duration-500 hover:scale-105 border-2 border-indigo-500 relative">
                    <div class="absolute top-0 left-0 bg-indigo-500 text-white text-xs font-bold px-2 py-1 rounded-br">POPULAR</div>
                    <div class="px-6 py-8">
                        <div class="text-center">
                            <h3 class="text-2xl font-bold text-gray-800 mb-2">Social Ninja Dojo</h3>
                            <div class="flex justify-center items-baseline my-4">
                                <span class="text-4xl font-extrabold text-gray-800">$22</span>
                                <span class="ml-1 text-gray-600">/month</span>
                            </div>
                        </div>
                        <ul class="space-y-3 mb-8">
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>Advanced Drawing Tools</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>500MB Storage</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>Priority Support</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>Whiteboard Collaboration</span>
                            </li>
                        </ul>
                        <button onclick="selectTier('dojo')" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-4 rounded transition duration-300">
                            Join Now
                        </button>
                    </div>
                </div>

                <!-- Tier 3 -->
                <div class="bg-white rounded-xl shadow-lg overflow-hidden transform transition duration-500 hover:scale-105">
                    <div class="px-6 py-8">
                        <div class="text-center">
                            <h3 class="text-2xl font-bold text-gray-800 mb-2">Developers Network</h3>
                            <div class="flex justify-center items-baseline my-4">
                                <span class="text-4xl font-extrabold text-gray-800">$200</span>
                                <span class="ml-1 text-gray-600">+ $22/month</span>
                            </div>
                        </div>
                        <ul class="space-y-3 mb-8">
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>All Premium Features</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>Unlimited Storage</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>24/7 Support</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>API Access</span>
                            </li>
                            <li class="flex items-center">
                                <i class="fas fa-check text-green-500 mr-2"></i>
                                <span>Developer Tools Integration</span>
                            </li>
                        </ul>
                        <button onclick="selectTier('developer')" class="w-full bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-4 rounded transition duration-300">
                            Join Network
                        </button>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Profile Info Form (Hidden by default) -->
    <section id="profile-form" class="py-20 bg-gray-50 hidden">
        <div class="container mx-auto px-4">
            <div class="max-w-2xl mx-auto bg-white rounded-xl shadow-lg p-8">
                <h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Complete Your Profile</h2>
                <form id="user-profile-form" class="space-y-6">
                    <div>
                        <label class="block text-gray-700 mb-2">Full Name</label>
                        <input type="text" class="w-full px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500" required>
                    </div>
                    <div>
                        <label class="block text-gray-700 mb-2">Email</label>
                        <input type="email" class="w-full px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500" required>
                    </div>
                    <div>
                        <label class="block text-gray-700 mb-2">Password</label>
                        <input type="password" class="w-full px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500" required>
                    </div>
                    <div>
                        <label class="block text-gray-700 mb-2">Profile Picture</label>
                        <input type="file" class="w-full px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500">
                    </div>
                    <div>
                        <label class="block text-gray-700 mb-2">Bio</label>
                        <textarea rows="4" class="w-full px-4 py-2 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea>
                    </div>
                    <button type="button" onclick="completeProfile()" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-4 rounded transition duration-300">
                        Complete Profile & Enter Dashboard
                    </button>
                </form>
            </div>
        </div>
    </section>

    <!-- Dashboard (Hidden by default) -->
    <section id="dashboard" class="hidden">
        <div class="flex h-screen">
            <!-- Sidebar -->
            <div class="w-64 bg-gray-900 text-white">
                <div class="p-4 border-b border-gray-800">
                    <h2 class="text-xl font-bold">Social Ninja</h2>
                    <p class="text-sm text-gray-400">Welcome, <span id="username-display">User</span></p>
                </div>
                <nav class="mt-4">
                    <div class="px-4 py-3 sidebar-item active" onclick="showSection('dashboard-home')">
                        <i class="fas fa-home mr-3"></i>
                        Dashboard
                    </div>
                    <div class="px-4 py-3 sidebar-item" onclick="showSection('drawing-canvas')">
                        <i class="fas fa-pencil-alt mr-3"></i>
                        Drawing Canvas
                    </div>
                    <div class="px-4 py-3 sidebar-item" onclick="showSection('portfolio')">
                        <i class="fas fa-briefcase mr-3"></i>
                        Portfolio
                    </div>
                    <div class="px-4 py-3 sidebar-item" onclick="showSection('upload-media')">
                        <i class="fas fa-upload mr-3"></i>
                        Upload Media
                    </div>
                    <div class="px-4 py-3 sidebar-item" onclick="showSection('developers-docs')">
                        <i class="fas fa-code mr-3"></i>
                        Developers Docs
                    </div>
                    <div class="px-4 py-3 sidebar-item" onclick="showSection('integrations')">
                        <i class="fas fa-plug mr-3"></i>
                        Integrations
                    </div>
                    <div class="px-4 py-3 sidebar-item" onclick="showSection('settings')">
                        <i class="fas fa-cog mr-3"></i>
                        Settings
                    </div>
                </nav>
            </div>

            <!-- Main Content -->
            <div class="flex-1 flex flex-col overflow-hidden">
                <!-- Top Navigation -->
                <header class="bg-white border-b border-gray-200 py-4 px-6 flex justify-between items-center">
                    <h3 id="current-section" class="text-xl font-semibold text-gray-800">Dashboard</h3>
                    <div class="flex items-center space-x-4">
                        <button class="p-2 rounded-full hover:bg-gray-100">
                            <i class="fas fa-bell text-gray-600"></i>
                        </button>
                        <div class="flex items-center">
                            <img id="profile-picture" src="https://via.placeholder.com/40" alt="Profile" class="w-8 h-8 rounded-full mr-2">
                            <span class="text-gray-700">Account</span>
                        </div>
                    </div>
                </header>

                <!-- Dashboard Home -->
                <div id="dashboard-home" class="dashboard-section flex-1 overflow-y-auto p-6 bg-gray-100">
                    <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
                        <!-- Stats Cards -->
                        <div class="bg-white rounded-lg shadow p-6">
                            <h4 class="text-lg font-semibold mb-4">Your Stats</h4>
                            <div class="grid grid-cols-3 gap-4 text-center">
                                <div>
                                    <div class="text-2xl font-bold text-indigo-600">12</div>
                                    <div class="text-sm text-gray-500">Projects</div>
                                </div>
                                <div>
                                    <div class="text-2xl font-bold text-indigo-600">456</div>
                                    <div class="text-sm text-gray-500">Sketches</div>
                                </div>
                                <div>
                                    <div class="text-2xl font-bold text-indigo-600">1.2K</div>
                                    <div class="text-sm text-gray-500">
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=developerwoodstudios/my-awesome-application-index-html-app" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>