client-tool / index.html
Benoit35750's picture
Add 3 files
9df8198 verified
Raw
History Blame Contribute Delete
28.1 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Client Dashboard | Project Support Hub</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>
.gradient-bg {
background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
}
.sidebar-item:hover .sidebar-icon {
transform: translateX(3px);
}
.sidebar-icon {
transition: transform 0.2s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.card-hover {
transition: all 0.3s ease;
}
.progress-ring__circle {
transition: stroke-dashoffset 0.5s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
</style>
</head>
<body class="bg-gray-50 font-sans flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="hidden md:flex md:flex-shrink-0">
<div class="flex flex-col w-64 gradient-bg text-white">
<div class="flex items-center justify-center h-16 px-4 border-b border-blue-400">
<div class="flex items-center">
<i class="fas fa-cube text-2xl mr-2"></i>
<span class="text-xl font-semibold">Client Hub</span>
</div>
</div>
<div class="flex flex-col flex-grow px-4 py-4 overflow-y-auto">
<div class="space-y-1">
<div class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md bg-blue-700 text-white">
<i class="sidebar-icon fas fa-home mr-3"></i>
Dashboard
</div>
<div class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-blue-200 hover:text-white hover:bg-blue-600">
<i class="sidebar-icon fas fa-graduation-cap mr-3"></i>
Training & Support
</div>
<div class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-blue-200 hover:text-white hover:bg-blue-600">
<i class="sidebar-icon fas fa-heartbeat mr-3"></i>
Site Health
</div>
<div class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-blue-200 hover:text-white hover:bg-blue-600">
<i class="sidebar-icon fas fa-tools mr-3"></i>
Utilities
</div>
<div class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-blue-200 hover:text-white hover:bg-blue-600">
<i class="sidebar-icon fas fa-comments mr-3"></i>
Communication
</div>
</div>
<div class="mt-auto mb-4 px-2">
<div class="bg-blue-700 rounded-lg p-4">
<h4 class="text-sm font-medium text-white mb-2">Need help?</h4>
<p class="text-xs text-blue-200 mb-3">Our team is here to support you with any questions.</p>
<button class="w-full bg-white text-blue-600 text-xs font-semibold py-2 px-3 rounded-md hover:bg-gray-100">
Contact Support
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="flex flex-col flex-1 overflow-hidden">
<!-- Top Navigation -->
<div class="flex items-center justify-between h-16 bg-white border-b border-gray-200 px-4">
<div class="flex items-center">
<button class="md:hidden text-gray-500 mr-2">
<i class="fas fa-bars"></i>
</button>
<h1 class="text-lg font-semibold text-gray-800">Dashboard Overview</h1>
</div>
<div class="flex items-center">
<div class="relative">
<button class="p-1 text-gray-400 hover:text-gray-500">
<i class="fas fa-bell"></i>
</button>
<span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
</div>
<div class="ml-4 flex items-center">
<div class="h-8 w-8 rounded-full bg-blue-500 flex items-center justify-center text-white font-semibold">
C
</div>
<span class="ml-2 text-sm font-medium text-gray-700 hidden md:inline">Client Name</span>
</div>
</div>
</div>
<!-- Main Content Area -->
<div class="flex-1 overflow-auto p-4 md:p-6 bg-gray-50">
<!-- Welcome Banner -->
<div class="gradient-bg rounded-xl text-white p-6 mb-6">
<div class="flex flex-col md:flex-row md:items-center md:justify-between">
<div>
<h2 class="text-xl md:text-2xl font-bold mb-2">Welcome back!</h2>
<p class="text-blue-100 max-w-2xl">Here's everything you need to manage your website effectively. Access training materials, check site health, use helpful tools, and communicate with our team.</p>
</div>
<button class="mt-4 md:mt-0 bg-white text-blue-600 font-semibold py-2 px-6 rounded-lg hover:bg-gray-100 transition">
Quick Tour
</button>
</div>
</div>
<!-- Dashboard Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Training & Support Card -->
<div class="bg-white rounded-xl shadow-sm p-6 card-hover">
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold text-gray-800">
<i class="fas fa-graduation-cap text-blue-500 mr-2"></i>
Training & Support
</h3>
<span class="text-xs bg-blue-100 text-blue-800 py-1 px-2 rounded-full">New content</span>
</div>
<p class="text-sm text-gray-600 mb-4">Access tutorials, courses, and templates to help you manage your website effectively.</p>
<div class="space-y-3">
<div class="flex items-center p-3 bg-gray-50 rounded-lg">
<div class="h-10 w-10 rounded-lg bg-blue-100 flex items-center justify-center text-blue-600 mr-3">
<i class="fas fa-video"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">Video Tutorials</h4>
<p class="text-xs text-gray-500">Webflow CMS, SEO tweaks, and more</p>
</div>
</div>
<div class="flex items-center p-3 bg-gray-50 rounded-lg">
<div class="h-10 w-10 rounded-lg bg-purple-100 flex items-center justify-center text-purple-600 mr-3">
<i class="fas fa-book-open"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">Mini Courses</h4>
<p class="text-xs text-gray-500">Content writing, A/B testing basics</p>
</div>
</div>
<div class="flex items-center p-3 bg-gray-50 rounded-lg">
<div class="h-10 w-10 rounded-lg bg-green-100 flex items-center justify-center text-green-600 mr-3">
<i class="fas fa-clipboard-list"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">Templates</h4>
<p class="text-xs text-gray-500">Page launches, seasonal updates</p>
</div>
</div>
</div>
<button class="mt-4 w-full bg-gray-100 text-gray-800 font-medium py-2 px-4 rounded-lg hover:bg-gray-200 transition text-sm">
View All Resources
</button>
</div>
<!-- Site Health Card -->
<div class="bg-white rounded-xl shadow-sm p-6 card-hover">
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold text-gray-800">
<i class="fas fa-heartbeat text-red-500 mr-2"></i>
Site Health
</h3>
<span class="text-xs bg-green-100 text-green-800 py-1 px-2 rounded-full">All systems OK</span>
</div>
<p class="text-sm text-gray-600 mb-4">Your website's current performance and health metrics.</p>
<div class="grid grid-cols-2 gap-4 mb-4">
<div class="bg-gray-50 p-3 rounded-lg">
<div class="flex items-center justify-between mb-2">
<span class="text-xs font-medium text-gray-500">Uptime</span>
<span class="text-xs font-semibold text-green-600">99.98%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-1.5">
<div class="bg-green-500 h-1.5 rounded-full" style="width: 99.8%"></div>
</div>
</div>
<div class="bg-gray-50 p-3 rounded-lg">
<div class="flex items-center justify-between mb-2">
<span class="text-xs font-medium text-gray-500">Page Speed</span>
<span class="text-xs font-semibold text-yellow-600">82/100</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-1.5">
<div class="bg-yellow-500 h-1.5 rounded-full" style="width: 82%"></div>
</div>
</div>
</div>
<div class="space-y-3">
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<div class="h-8 w-8 rounded-lg bg-red-100 flex items-center justify-center text-red-600 mr-3">
<i class="fas fa-unlink text-sm"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">Broken Links</h4>
</div>
</div>
<span class="text-sm font-medium text-gray-800">2 detected</span>
</div>
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<div class="h-8 w-8 rounded-lg bg-blue-100 flex items-center justify-center text-blue-600 mr-3">
<i class="fas fa-exclamation-triangle text-sm"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">404 Errors</h4>
</div>
</div>
<span class="text-sm font-medium text-gray-800">5 this week</span>
</div>
</div>
<button class="mt-4 w-full bg-gray-100 text-gray-800 font-medium py-2 px-4 rounded-lg hover:bg-gray-200 transition text-sm">
View Detailed Report
</button>
</div>
<!-- Utilities Card -->
<div class="bg-white rounded-xl shadow-sm p-6 card-hover">
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold text-gray-800">
<i class="fas fa-tools text-purple-500 mr-2"></i>
Utilities & Tools
</h3>
<span class="text-xs bg-purple-100 text-purple-800 py-1 px-2 rounded-full">Interactive</span>
</div>
<p class="text-sm text-gray-600 mb-4">Helpful tools to make website management easier.</p>
<div class="space-y-3">
<div class="flex items-center p-3 bg-gray-50 rounded-lg hover:bg-purple-50 cursor-pointer transition">
<div class="h-10 w-10 rounded-lg bg-purple-100 flex items-center justify-center text-purple-600 mr-3">
<i class="fas fa-cube"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">Component Builder</h4>
<p class="text-xs text-gray-500">Create custom Webflow components</p>
</div>
</div>
<div class="flex items-center p-3 bg-gray-50 rounded-lg hover:bg-blue-50 cursor-pointer transition">
<div class="h-10 w-10 rounded-lg bg-blue-100 flex items-center justify-center text-blue-600 mr-3">
<i class="fas fa-link"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">URL Status Checker</h4>
<p class="text-xs text-gray-500">Verify links and redirects</p>
</div>
</div>
<div class="flex items-center p-3 bg-gray-50 rounded-lg hover:bg-green-50 cursor-pointer transition">
<div class="h-10 w-10 rounded-lg bg-green-100 flex items-center justify-center text-green-600 mr-3">
<i class="fas fa-code"></i>
</div>
<div>
<h4 class="text-sm font-medium text-gray-800">Code Snippets</h4>
<p class="text-xs text-gray-500">Common custom code solutions</p>
</div>
</div>
</div>
<button class="mt-4 w-full bg-gray-100 text-gray-800 font-medium py-2 px-4 rounded-lg hover:bg-gray-200 transition text-sm">
Explore All Tools
</button>
</div>
<!-- Communication Card -->
<div class="bg-white rounded-xl shadow-sm p-6 card-hover">
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold text-gray-800">
<i class="fas fa-comments text-green-500 mr-2"></i>
Communication
</h3>
<span class="text-xs bg-green-100 text-green-800 py-1 px-2 rounded-full">2 new</span>
</div>
<p class="text-sm text-gray-600 mb-4">Send feedback, track requests, and stay updated with changes.</p>
<div class="space-y-4">
<div class="bg-gray-50 rounded-lg p-4">
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="h-10 w-10 rounded-full bg-green-100 flex items-center justify-center text-green-600">
<i class="fas fa-comment-dots"></i>
</div>
</div>
<div class="ml-3 flex-1">
<h4 class="text-sm font-medium text-gray-800">Feedback Tracker</h4>
<p class="text-xs text-gray-500 mt-1">Share your thoughts and suggestions with our team</p>
<button class="mt-2 text-xs font-medium text-green-600 hover:text-green-700">
Submit Feedback →
</button>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-lg p-4">
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
<i class="fas fa-list-alt"></i>
</div>
</div>
<div class="ml-3 flex-1">
<h4 class="text-sm font-medium text-gray-800">Request System</h4>
<p class="text-xs text-gray-500 mt-1">Submit website update requests</p>
<button class="mt-2 text-xs font-medium text-blue-600 hover:text-blue-700">
New Request →
</button>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-lg p-4">
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="h-10 w-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-600">
<i class="fas fa-history"></i>
</div>
</div>
<div class="ml-3 flex-1">
<h4 class="text-sm font-medium text-gray-800">Changelog</h4>
<p class="text-xs text-gray-500 mt-1">Latest Webflow updates and features</p>
<button class="mt-2 text-xs font-medium text-purple-600 hover:text-purple-700">
View Updates →
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Quick Actions Card -->
<div class="bg-white rounded-xl shadow-sm p-6 card-hover">
<h3 class="text-lg font-semibold text-gray-800 mb-4">
<i class="fas fa-bolt text-yellow-500 mr-2"></i>
Quick Actions
</h3>
<div class="grid grid-cols-2 gap-3">
<button class="flex flex-col items-center justify-center p-3 bg-blue-50 rounded-lg hover:bg-blue-100 transition">
<div class="h-8 w-8 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 mb-2">
<i class="fas fa-video"></i>
</div>
<span class="text-xs font-medium text-gray-800 text-center">Record Loom</span>
</button>
<button class="flex flex-col items-center justify-center p-3 bg-purple-50 rounded-lg hover:bg-purple-100 transition">
<div class="h-8 w-8 rounded-full bg-purple-100 flex items-center justify-center text-purple-600 mb-2">
<i class="fas fa-file-export"></i>
</div>
<span class="text-xs font-medium text-gray-800 text-center">Export Data</span>
</button>
<button class="flex flex-col items-center justify-center p-3 bg-green-50 rounded-lg hover:bg-green-100 transition">
<div class="h-8 w-8 rounded-full bg-green-100 flex items-center justify-center text-green-600 mb-2">
<i class="fas fa-book"></i>
</div>
<span class="text-xs font-medium text-gray-800 text-center">Docs</span>
</button>
<button class="flex flex-col items-center justify-center p-3 bg-red-50 rounded-lg hover:bg-red-100 transition">
<div class="h-8 w-8 rounded-full bg-red-100 flex items-center justify-center text-red-600 mb-2">
<i class="fas fa-headset"></i>
</div>
<span class="text-xs font-medium text-gray-800 text-center">Support</span>
</button>
</div>
</div>
<!-- Recent Activity Card -->
<div class="bg-white rounded-xl shadow-sm p-6 card-hover">
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold text-gray-800">
<i class="fas fa-clock text-gray-500 mr-2"></i>
Recent Activity
</h3>
<button class="text-xs font-medium text-blue-600 hover:text-blue-700">
View All
</button>
</div>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="h-6 w-6 rounded-full bg-green-100 flex items-center justify-center text-green-600 text-xs">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-3">
<p class="text-sm text-gray-800">SEO optimization completed for homepage</p>
<p class="text-xs text-gray-500 mt-1">2 hours ago</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="h-6 w-6 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 text-xs">
<i class="fas fa-comment"></i>
</div>
</div>
<div class="ml-3">
<p class="text-sm text-gray-800">New feedback received about contact form</p>
<p class="text-xs text-gray-500 mt-1">1 day ago</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="h-6 w-6 rounded-full bg-purple-100 flex items-center justify-center text-purple-600 text-xs">
<i class="fas fa-sync-alt"></i>
</div>
</div>
<div class="ml-3">
<p class="text-sm text-gray-800">Website backup completed successfully</p>
<p class="text-xs text-gray-500 mt-1">2 days ago</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
// Simple interactive elements
document.addEventListener('DOMContentLoaded', function() {
// Simulate loading data
setTimeout(() => {
const loadingElements = document.querySelectorAll('.animate-pulse');
loadingElements.forEach(el => {
el.classList.remove('animate-pulse');
el.classList.add('bg-green-100');
});
}, 1500);
// URL Checker functionality (simplified)
const urlCheckerBtn = document.querySelector('[data-url-checker]');
if(urlCheckerBtn) {
urlCheckerBtn.addEventListener('click', function() {
const urlInput = document.getElementById('url-to-check');
if(urlInput && urlInput.value) {
alert(`Checking URL: ${urlInput.value}\n(This would call an API in a real implementation)`);
} else {
alert('Please enter a URL to check');
}
});
}
// Feedback form submission
const feedbackForm = document.getElementById('feedback-form');
if(feedbackForm) {
feedbackForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your feedback! Our team will review it shortly.');
this.reset();
});
}
});
</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=Benoit35750/client-tool" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>