start-1 / index.html
cixma's picture
- Initial Deployment
abfa8b8 verified
Raw
History Blame Contribute Delete
20 kB
<!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>