File size: 19,987 Bytes
abfa8b8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="sv">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WEBBAB Dashboard</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>
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        }
        .section-title {
            position: relative;
            display: inline-block;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            bottom: -8px;
            left: 0;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }
        .search-box:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
        }
        .dark-mode {
            background-color: #1a202c;
            color: #f7fafc;
        }
        .dark-mode .card {
            background-color: #2d3748;
            border-color: #4a5568;
        }
        .dark-mode .search-box {
            background-color: #2d3748;
            color: #f7fafc;
            border-color: #4a5568;
        }
    </style>
</head>
<body class="bg-gray-50 font-sans transition-colors duration-300">
    <div class="container mx-auto px-4 py-8">
        <!-- Header -->
        <header class="flex flex-col md:flex-row justify-between items-center mb-12">
            <div class="flex items-center mb-6 md:mb-0">
                <img src="https://webbab.se/wp-content/uploads/logo.png" alt="WEBBAB Logo" class="h-16 mr-4">
                <h1 class="text-4xl font-bold text-gray-800">WEBBAB</h1>
            </div>
            <div class="flex items-center space-x-4">
                <div class="relative">
                    <input type="text" placeholder="Sök tjänst..." 
                           class="search-box pl-10 pr-4 py-2 rounded-lg border border-gray-300 focus:border-blue-500 w-64 transition-all">
                    <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
                </div>
                <button id="theme-toggle" class="p-2 rounded-full bg-gray-200 hover:bg-gray-300 transition-colors">
                    <i class="fas fa-moon text-gray-700"></i>
                </button>
            </div>
        </header>

        <!-- Main Content -->
        <main>
            <!-- Services Section -->
            <section class="mb-12">
                <h2 class="section-title text-2xl font-bold mb-6 text-gray-800">Tjänster</h2>
                <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
                    <!-- Service Cards -->
                    <a href="https://app.seventime.se/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-tools"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Seven Time (ST)</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Oderland WHM</p>
                    </a>
                    
                    <a href="https://server10.serverdrift.com:2087/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-server"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Oderland WHM</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Server management</p>
                    </a>
                    
                    <a href="https://app.cling.se/a/overview/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-star"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Cling</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Business overview</p>
                    </a>
                    
                    <a href="https://login.inleed.net/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-cog"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Inleed</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Login portal</p>
                    </a>
                    
                    <a href="https://portal.beebyte.se/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-cog"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Beebyte</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Portal access</p>
                    </a>
                    
                    <a href="http://194.68.59.73:5000/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-server"></i>
                            </div>
                            <h3 class="font-semibold text-lg">CIXMA server</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Server access</p>
                    </a>
                </div>
            </section>

            <!-- Resources Section -->
            <section class="mb-12">
                <h2 class="section-title text-2xl font-bold mb-6 text-gray-800">Resurser</h2>
                <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
                    <!-- Resource Cards -->
                    <a href="https://zonemaster.net/domain_check" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-globe"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Zonemaster</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Domain verification tool</p>
                    </a>
                    
                    <a href="https://internetstiftelsen.se/domaner/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-search"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Domain Owner</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Who owns the domain?</p>
                    </a>
                    
                    <a href="https://html5-editor.net/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-code"></i>
                            </div>
                            <h3 class="font-semibold text-lg">HTML5 Editor</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Online code editor</p>
                    </a>
                    
                    <a href="https://nextcloud.serverpanel.se/index.php" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-cloud"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Nextcloud</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Cloud storage</p>
                    </a>
                </div>
            </section>

            <!-- Control Section -->
            <section class="mb-12">
                <h2 class="section-title text-2xl font-bold mb-6 text-gray-800">Kontroll</h2>
                <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
                    <!-- Control Cards -->
                    <a href="https://n8n.r6.se/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-project-diagram"></i>
                            </div>
                            <h3 class="font-semibold text-lg">R6 N8N</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Automation platform</p>
                    </a>
                    
                    <a href="https://portainer.r6.se/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-box"></i>
                            </div>
                            <h3 class="font-semibold text-lg">R6 Docker</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Container management</p>
                    </a>
                    
                    <a href="https://dashboard.hookdeck.com/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-plug"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Hookdeck</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Webhook management</p>
                    </a>
                    
                    <a href="https://www.merinfo.se/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-building"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Merinfo.se</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Company information</p>
                    </a>
                </div>
            </section>

            <!-- Apps Section -->
            <section class="mb-12">
                <h2 class="section-title text-2xl font-bold mb-6 text-gray-800">Appar</h2>
                <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
                    <!-- App Cards -->
                    <a href="https://pw.webb.io/index.html" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-key"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Password Generator</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Generate secure passwords</p>
                    </a>
                    
                    <a href="https://www.transfernow.net/sv" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-file-upload"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Transfer Files</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Send files easily</p>
                    </a>
                    
                    <a href="https://dnsrecords.io/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-network-wired"></i>
                            </div>
                            <h3 class="font-semibold text-lg">DNS Records</h3>
                        </div>
                        <p class="text-gray-600 text-sm">DNS lookup tool</p>
                    </a>
                    
                    <a href="https://www.egensajt.se/registrera-doman/" class="card block bg-white rounded-lg border border-gray-200 p-6 shadow-sm hover:shadow-md transition-all duration-300 card-hover">
                        <div class="flex items-center mb-4">
                            <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white mr-4">
                                <i class="fas fa-search"></i>
                            </div>
                            <h3 class="font-semibold text-lg">Domain Search</h3>
                        </div>
                        <p class="text-gray-600 text-sm">Find available domains</p>
                    </a>
                </div>
            </section>
        </main>

        <!-- Footer -->
        <footer class="mt-12 pt-8 border-t border-gray-200 text-center">
            <p class="text-gray-600 mb-4">© 2025 <a href="https://webbab.se/" class="text-blue-600 hover:text-blue-800">Webbyrån WEBBAB</a></p>
            <div class="flex justify-center space-x-4">
                <a href="#" class="text-gray-500 hover:text-gray-700"><i class="fab fa-facebook"></i></a>
                <a href="#" class="text-gray-500 hover:text-gray-700"><i class="fab fa-twitter"></i></a>
                <a href="#" class="text-gray-500 hover:text-gray-700"><i class="fab fa-linkedin"></i></a>
                <a href="#" class="text-gray-500 hover:text-gray-700"><i class="fab fa-github"></i></a>
            </div>
        </footer>
    </div>

    <script>
        // Dark mode toggle
        const themeToggle = document.getElementById('theme-toggle');
        const body = document.body;
        
        themeToggle.addEventListener('click', () => {
            body.classList.toggle('dark-mode');
            
            if (body.classList.contains('dark-mode')) {
                themeToggle.innerHTML = '<i class="fas fa-sun text-yellow-400"></i>';
                localStorage.setItem('theme', 'dark');
            } else {
                themeToggle.innerHTML = '<i class="fas fa-moon text-gray-700"></i>';
                localStorage.setItem('theme', 'light');
            }
        });
        
        // Check for saved theme preference
        if (localStorage.getItem('theme') === 'dark') {
            body.classList.add('dark-mode');
            themeToggle.innerHTML = '<i class="fas fa-sun text-yellow-400"></i>';
        }
        
        // Search functionality
        const searchBox = document.querySelector('.search-box');
        const cards = document.querySelectorAll('.card');
        
        searchBox.addEventListener('input', () => {
            const searchTerm = searchBox.value.toLowerCase();
            
            cards.forEach(card => {
                const title = card.querySelector('h3').textContent.toLowerCase();
                const description = card.querySelector('p').textContent.toLowerCase();
                
                if (title.includes(searchTerm) || description.includes(searchTerm)) {
                    card.style.display = 'block';
                } else {
                    card.style.display = 'none';
                }
            });
        });
    </script>
<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=cixma/start-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>