gitconnect-hub / services.html
Gravatar123A's picture
copy this website https://victuscloud.xyz
c677782 verified
Raw
History Blame Contribute Delete
20.7 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - GitConnect Hub</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
min-height: 100vh;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
.gradient-text {
background: linear-gradient(90deg, #60a5fa, #8b5cf6, #ec4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.platform-card {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.platform-card:hover {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.service-card {
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
}
</style>
</head>
<body class="text-gray-100">
<!-- Header -->
<header class="py-6 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-lg bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center">
<i data-feather="git-branch" class="text-white"></i>
</div>
<h1 class="text-2xl font-bold gradient-text">GitConnect Hub</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="index.html" class="hover:text-blue-400 transition-colors">Home</a>
<a href="about.html" class="hover:text-blue-400 transition-colors">About</a>
<a href="services.html" class="hover:text-blue-400 transition-colors">Services</a>
<a href="#" class="hover:text-blue-400 transition-colors">Contact</a>
</nav>
<button class="md:hidden text-gray-300">
<i data-feather="menu"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">
Our <span class="gradient-text">Services</span>
</h1>
<p class="text-xl text-gray-300 max-w-3xl mx-auto mb-12">
Comprehensive solutions to help you connect and optimize your GitHub workflows with leading platforms.
</p>
</div>
</section>
<!-- Services Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 mb-16">
<!-- Service 1 -->
<div class="service-card platform-card rounded-2xl p-8">
<div class="flex items-start mb-6">
<div class="w-16 h-16 rounded-lg bg-blue-500 flex items-center justify-center mr-6 flex-shrink-0">
<i data-feather="zap" class="text-white w-8 h-8"></i>
</div>
<div>
<h3 class="text-2xl font-bold mb-3">Integration Setup</h3>
<p class="text-gray-300">
We help you set up seamless integrations between GitHub and your preferred platforms, ensuring smooth workflows from development to deployment.
</p>
</div>
</div>
<ul class="space-y-3 text-gray-300 ml-22">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Platform selection consultation
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Configuration and setup
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Testing and validation
</li>
</ul>
</div>
<!-- Service 2 -->
<div class="service-card platform-card rounded-2xl p-8">
<div class="flex items-start mb-6">
<div class="w-16 h-16 rounded-lg bg-purple-500 flex items-center justify-center mr-6 flex-shrink-0">
<i data-feather="refresh-cw" class="text-white w-8 h-8"></i>
</div>
<div>
<h3 class="text-2xl font-bold mb-3">Workflow Optimization</h3>
<p class="text-gray-300">
Analyze and optimize your existing GitHub workflows to improve efficiency, reduce build times, and enhance collaboration.
</p>
</div>
</div>
<ul class="space-y-3 text-gray-300 ml-22">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Workflow analysis
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Performance optimization
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Automation implementation
</li>
</ul>
</div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<!-- Service 3 -->
<div class="service-card platform-card rounded-2xl p-8">
<div class="flex items-start mb-6">
<div class="w-16 h-16 rounded-lg bg-pink-500 flex items-center justify-center mr-6 flex-shrink-0">
<i data-feather="book-open" class="text-white w-8 h-8"></i>
</div>
<div>
<h3 class="text-2xl font-bold mb-3">Training & Documentation</h3>
<p class="text-gray-300">
Comprehensive training programs and documentation to empower your team with the knowledge to manage integrations independently.
</p>
</div>
</div>
<ul class="space-y-3 text-gray-300 ml-22">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Custom training sessions
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Detailed documentation
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Best practices guidance
</li>
</ul>
</div>
<!-- Service 4 -->
<div class="service-card platform-card rounded-2xl p-8">
<div class="flex items-start mb-6">
<div class="w-16 h-16 rounded-lg bg-green-500 flex items-center justify-center mr-6 flex-shrink-0">
<i data-feather="headphones" class="text-white w-8 h-8"></i>
</div>
<div>
<h3 class="text-2xl font-bold mb-3">Ongoing Support</h3>
<p class="text-gray-300">
Continuous support to ensure your integrations remain functional and up-to-date with platform changes and updates.
</p>
</div>
</div>
<ul class="space-y-3 text-gray-300 ml-22">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
24/7 monitoring
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Regular maintenance
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 mr-2 w-5 h-5"></i>
Priority support
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-black/20">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
Choose the plan that works best for your team with no hidden fees or commitments.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Basic Plan -->
<div class="platform-card rounded-2xl p-8">
<h3 class="text-2xl font-bold mb-4">Basic</h3>
<div class="mb-6">
<span class="text-4xl font-bold">$99</span>
<span class="text-gray-400">/project</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Single platform integration
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Basic setup assistance
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Email support
</li>
<li class="flex items-center text-gray-500">
<i data-feather="x-circle" class="mr-2"></i>
Advanced optimization
</li>
<li class="flex items-center text-gray-500">
<i data-feather="x-circle" class="mr-2"></i>
Training sessions
</li>
</ul>
<button class="w-full bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white font-semibold py-3 px-6 rounded-lg transition-all duration-300">
Get Started
</button>
</div>
<!-- Pro Plan -->
<div class="platform-card rounded-2xl p-8 border-2 border-purple-500 relative">
<div class="absolute top-0 right-0 bg-purple-500 text-white text-xs font-bold px-4 py-1 rounded-bl-lg rounded-tr-xl">
POPULAR
</div>
<h3 class="text-2xl font-bold mb-4">Pro</h3>
<div class="mb-6">
<span class="text-4xl font-bold">$299</span>
<span class="text-gray-400">/month</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Up to 5 platform integrations
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Workflow optimization
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Priority email support
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Monthly check-ins
</li>
<li class="flex items-center text-gray-500">
<i data-feather="x-circle" class="mr-2"></i>
Training sessions
</li>
</ul>
<button class="w-full bg-gradient-to-r from-purple-600 to-pink-600 hover:from-purple-700 hover:to-pink-700 text-white font-semibold py-3 px-6 rounded-lg transition-all duration-300">
Get Started
</button>
</div>
<!-- Enterprise Plan -->
<div class="platform-card rounded-2xl p-8">
<h3 class="text-2xl font-bold mb-4">Enterprise</h3>
<div class="mb-6">
<span class="text-4xl font-bold">Custom</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Unlimited integrations
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Full workflow optimization
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
Dedicated account manager
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
On-site training sessions
</li>
<li class="flex items-center">
<i data-feather="check-circle" class="text-green-500 mr-2"></i>
24/7 phone support
</li>
</ul>
<button class="w-full bg-gradient-to-r from-green-600 to-teal-600 hover:from-green-700 hover:to-teal-700 text-white font-semibold py-3 px-6 rounded-lg transition-all duration-300">
Contact Sales
</button>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto text-center bg-gradient-to-r from-blue-900/50 to-purple-900/50 rounded-3xl p-12 backdrop-blur-sm border border-gray-700">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Workflows?</h2>
<p class="text-gray-300 text-xl mb-8 max-w-2xl mx-auto">
Let us help you connect your GitHub repositories with the best platforms and optimize your development process.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white text-gray-900 hover:bg-gray-100 font-semibold py-3 px-8 rounded-lg transition-all duration-300 transform hover:scale-105">
Schedule a Consultation
</button>
<button class="bg-transparent border-2 border-gray-400 hover:border-white text-white font-semibold py-3 px-8 rounded-lg transition-all duration-300">
View Case Studies
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-4 sm:px-6 lg:px-8 border-t border-gray-800">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-8 h-8 rounded-lg bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center">
<i data-feather="git-branch" class="text-white w-4 h-4"></i>
</div>
<h3 class="text-xl font-bold">GitConnect Hub</h3>
</div>
<p class="text-gray-400">
The ultimate guide to connecting your GitHub repositories with the best platforms and tools.
</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Platforms</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Vercel</a></li>
<li><a href="#" class="hover:text-white transition-colors">Netlify</a></li>
<li><a href="#" class="hover:text-white transition-colors">CircleCI</a></li>
<li><a href="#" class="hover:text-white transition-colors">Heroku</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Documentation</a></li>
<li><a href="#" class="hover:text-white transition-colors">Tutorials</a></li>
<li><a href="#" class="hover:text-white transition-colors">Blog</a></li>
<li><a href="#" class="hover:text-white transition-colors">Community</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Twitter</a></li>
<li><a href="#" class="hover:text-white transition-colors">GitHub</a></li>
<li><a href="#" class="hover:text-white transition-colors">Discord</a></li>
<li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>© 2023 GitConnect Hub. All rights reserved.</p>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>