chronochat-calendars / integrations.html
HaiderAUT's picture
create a timetabling tool that can talk to any type of calendars
b6d48f4 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Integrations | ChronoChat</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>
<style>
.integration-card {
transition: all 0.3s ease;
}
.integration-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.category-tab {
transition: all 0.2s ease;
}
.category-tab.active {
background-color: #4f46e5;
color: white;
}
</style>
</head>
<body class="bg-gradient-to-br from-indigo-50 to-purple-50 min-h-screen">
<header class="py-6 px-4 sm:px-8 bg-white shadow-sm">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="clock" class="text-indigo-600 w-8 h-8"></i>
<h1 class="text-2xl font-bold text-indigo-900">ChronoChat</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-indigo-800 hover:text-indigo-600 font-medium">Features</a>
<a href="integrations.html" class="text-indigo-600 font-medium">Integrations</a>
<a href="#" class="text-indigo-800 hover:text-indigo-600 font-medium">Pricing</a>
<a href="#" class="text-indigo-800 hover:text-indigo-600 font-medium">Contact</a>
</nav>
<button class="md:hidden">
<i data-feather="menu" class="w-6 h-6 text-indigo-800"></i>
</button>
</div>
</header>
<main class="container mx-auto px-4 sm:px-8 py-12">
<section class="text-center mb-16">
<h2 class="text-4xl md:text-5xl font-bold text-indigo-900 mb-6">Connect with All Your Tools</h2>
<p class="text-xl text-indigo-700 max-w-3xl mx-auto mb-8">
ChronoChat works seamlessly with all major calendar platforms and productivity apps.
</p>
</section>
<section class="mb-16">
<div class="flex flex-wrap justify-center gap-2 mb-8">
<button class="category-tab active px-4 py-2 rounded-full font-medium bg-indigo-600 text-white">
All
</button>
<button class="category-tab px-4 py-2 rounded-full font-medium bg-white text-indigo-700 shadow-sm hover:bg-indigo-50">
Calendars
</button>
<button class="category-tab px-4 py-2 rounded-full font-medium bg-white text-indigo-700 shadow-sm hover:bg-indigo-50">
Productivity
</button>
<button class="category-tab px-4 py-2 rounded-full font-medium bg-white text-indigo-700 shadow-sm hover:bg-indigo-50">
Communication
</button>
<button class="category-tab px-4 py-2 rounded-full font-medium bg-white text-indigo-700 shadow-sm hover:bg-indigo-50">
CRM
</button>
<button class="category-tab px-4 py-2 rounded-full font-medium bg-white text-indigo-700 shadow-sm hover:bg-indigo-50">
Developer
</button>
</div>
<div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Calendar Integrations -->
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-google-red bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="calendar" class="text-google-red w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Google Calendar</h4>
<p class="text-indigo-600 text-sm">Two-way sync with Google's ecosystem</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Sync events, reminders, and attendee responses in real-time with Google's calendar platform.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Popular</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-microsoft-blue bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="calendar" class="text-microsoft-blue w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Microsoft Outlook</h4>
<p class="text-indigo-600 text-sm">Full integration with Outlook/Exchange</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Seamlessly connect your Outlook calendars and maintain all your existing event details.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Popular</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-apple-black bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="calendar" class="text-apple-black w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Apple Calendar</h4>
<p class="text-indigo-600 text-sm">Native support for iCloud calendars</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Keep your Apple devices in sync while connecting with other calendar systems.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<!-- Productivity Integrations -->
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-slack-purple bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="slack" class="text-slack-purple w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Slack</h4>
<p class="text-indigo-600 text-sm">Sync meetings with Slack status</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Automatically update your Slack status when in meetings and sync Slack events to your calendar.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-purple-100 text-purple-800 px-3 py-1 rounded-full">New</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-zapier-orange bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="zap" class="text-zapier-orange w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Zapier</h4>
<p class="text-indigo-600 text-sm">Connect with 5,000+ apps</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Create custom workflows between ChronoChat and any app in the Zapier ecosystem.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-notion-black bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="file-text" class="text-notion-black w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Notion</h4>
<p class="text-indigo-600 text-sm">Sync deadlines and events</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Keep your Notion database deadlines in sync with your calendar events.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<!-- Communication Integrations -->
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-teams-blue bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="video" class="text-teams-blue w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Microsoft Teams</h4>
<p class="text-indigo-600 text-sm">Meeting sync and auto-join</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Sync Teams meetings across calendars and get one-click join links.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-zoom-blue bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="video" class="text-zoom-blue w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Zoom</h4>
<p class="text-indigo-600 text-sm">Automated meeting creation</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Create Zoom meetings directly from calendar events and sync details.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Popular</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
<div class="integration-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-salesforce-blue bg-opacity-10 p-3 rounded-lg mr-4">
<i data-feather="dollar-sign" class="text-salesforce-blue w-6 h-6"></i>
</div>
<div>
<h4 class="font-bold text-lg text-indigo-900">Salesforce</h4>
<p class="text-indigo-600 text-sm">CRM event synchronization</p>
</div>
</div>
<p class="text-indigo-700 mb-4">Keep your Salesforce meetings and activities in sync with your personal calendar.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 text-sm font-medium flex items-center">
Connect <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-6 py-3 rounded-full font-medium transition-all">
Load More Integrations
</button>
</div>
</section>
<section class="bg-indigo-900 text-white rounded-2xl p-10 mb-16">
<div class="max-w-4xl mx-auto text-center">
<h3 class="text-3xl font-bold mb-6">Can't Find Your App?</h3>
<p class="text-xl text-indigo-200 mb-8">
We're constantly adding new integrations. Request your favorite app and we'll prioritize its development.
</p>
<div class="max-w-md mx-auto flex">
<input type="text" placeholder="Which app would you like to see?" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-indigo-900">
<button class="bg-indigo-600 hover:bg-indigo-700 px-6 py-3 rounded-r-lg font-medium">
Request
</button>
</div>
</div>
</section>
<section class="text-center">
<h3 class="text-2xl font-bold text-indigo-900 mb-6">Developer API</h3>
<p class="text-indigo-700 max-w-2xl mx-auto mb-8">
Build custom integrations with our powerful API. Connect ChronoChat to your internal systems or create new apps on our platform.
</p>
<div class="flex justify-center space-x-4">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-full font-medium shadow-lg transition-all">
API Documentation
</button>
<button class="border-2 border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-6 py-3 rounded-full font-medium transition-all">
Developer Community
</button>
</div>
</section>
</main>
<footer class="bg-indigo-900 text-white py-12">
<div class="container mx-auto px-4 sm:px-8">
<div class="grid md:grid-cols-4 gap-10 mb-10">
<div>
<h4 class="text-xl font-bold mb-4">ChronoChat</h4>
<p class="text-indigo-200">The universal translator for your calendar ecosystem.</p>
</div>
<div>
<h5 class="font-bold mb-4">Product</h5>
<ul class="space-y-2">
<li><a href="#" class="text-indigo-200 hover:text-white">Features</a></li>
<li><a href="integrations.html" class="text-indigo-200 hover:text-white">Integrations</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">Pricing</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">Roadmap</a></li>
</ul>
</div>
<div>
<h5 class="font-bold mb-4">Resources</h5>
<ul class="space-y-2">
<li><a href="#" class="text-indigo-200 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">API</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">Status</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">Help Center</a></li>
</ul>
</div>
<div>
<h5 class="font-bold mb-4">Company</h5>
<ul class="space-y-2">
<li><a href="#" class="text-indigo-200 hover:text-white">About</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">Blog</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">Careers</a></li>
<li><a href="#" class="text-indigo-200 hover:text-white">Contact</a></li>
</ul>
</div>
</div>
<div class="pt-6 border-t border-indigo-800 flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<p class="text-indigo-300">© 2023 ChronoChat. All rights reserved.</p>
</div>
<div class="flex space-x-6">
<a href="#"><i data-feather="twitter" class="text-indigo-300 hover:text-white"></i></a>
<a href="#"><i data-feather="linkedin" class="text-indigo-300 hover:text-white"></i></a>
<a href="#"><i data-feather="github" class="text-indigo-300 hover:text-white"></i></a>
<a href="#"><i data-feather="facebook" class="text-indigo-300 hover:text-white"></i></a>
</div>
</div>
</div>
</footer>
<script>
// Initialize feather icons
feather.replace();
// Tab functionality
document.querySelectorAll('.category-tab').forEach(tab => {
tab.addEventListener('click', function() {
document.querySelectorAll('.category-tab').forEach(t => {
t.classList.remove('active');
t.classList.add('bg-white', 'text-indigo-700');
t.classList.remove('bg-indigo-600', 'text-white');
});
this.classList.add('active');
this.classList.remove('bg-white', 'text-indigo-700');
this.classList.add('bg-indigo-600', 'text-white');
// In a real app, you would filter the integrations here
});
});
</script>
</body>
</html>