tikops / index.html
Ismaeldramani's picture
Add 2 files
876bd63 verified
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TIKOPS - Ingénierie Logicielle & Solutions IoT</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#cc4493',
primaryDark: '#a8377a',
primaryLight: '#e6a8d0',
}
}
}
}
</script>
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(204,68,147,0.9) 0%, rgba(102,51,153,0.9) 100%);
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #cc4493;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-card:hover .tech-icon {
transform: scale(1.2);
color: #cc4493;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header -->
<header class="fixed w-full bg-white shadow-md z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-primary flex items-center justify-center text-white font-bold text-xl mr-3">
<i class="fas fa-robot"></i>
</div>
<span class="text-xl font-bold text-primary">TIKOPS</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#accueil" class="nav-link text-gray-700 hover:text-primary transition">Accueil</a>
<a href="#services" class="nav-link text-gray-700 hover:text-primary transition">Services</a>
<a href="#secteurs" class="nav-link text-gray-700 hover:text-primary transition">Secteurs</a>
<a href="#technologies" class="nav-link text-gray-700 hover:text-primary transition">Technologies</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-primary transition">Contact</a>
</nav>
<button class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="accueil" class="hero-gradient pt-32 pb-20 text-white">
<div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Solutions Technologiques Innovantes</h1>
<p class="text-xl mb-8">Ingénierie logicielle et conception hardware sur mesure pour l'IoT et l'Intelligence Artificielle</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-white text-primary px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition text-center">Nous contacter</a>
<a href="#services" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-primary transition text-center">Nos services</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://cdn-icons-png.flaticon.com/512/2933/2933245.png" alt="Technologies IoT et IA" class="w-64 h-64">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4 text-primary">Nos Services</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Des solutions sur mesure pour répondre à vos besoins technologiques</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white rounded-xl p-8 shadow-lg transition duration-300 card-hover">
<div class="w-16 h-16 bg-primaryLight rounded-full flex items-center justify-center mb-6">
<i class="fas fa-laptop-code text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Ingénierie Logicielle</h3>
<p class="text-gray-600 mb-4">Développement d'applications web, mobiles et desktop performantes et sécurisées.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Applications Web modernes</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Solutions Mobile cross-platform</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Logiciels Desktop professionnels</li>
</ul>
</div>
<!-- Service 2 -->
<div class="bg-white rounded-xl p-8 shadow-lg transition duration-300 card-hover">
<div class="w-16 h-16 bg-primaryLight rounded-full flex items-center justify-center mb-6">
<i class="fas fa-microchip text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Conception Hardware IoT</h3>
<p class="text-gray-600 mb-4">Solutions matérielles sur mesure pour l'Internet des Objets et systèmes embarqués.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Cartes électroniques personnalisées</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Prototypage rapide</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Intégration de capteurs</li>
</ul>
</div>
<!-- Service 3 -->
<div class="bg-white rounded-xl p-8 shadow-lg transition duration-300 card-hover">
<div class="w-16 h-16 bg-primaryLight rounded-full flex items-center justify-center mb-6">
<i class="fas fa-brain text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">IA & Machine Learning</h3>
<p class="text-gray-600 mb-4">Développement de modèles d'intelligence artificielle et d'apprentissage automatique.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Modèles prédictifs</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Traitement du langage naturel</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Vision par ordinateur</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Secteurs Section -->
<section id="secteurs" class="py-20">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4 text-primary">Secteurs d'Intervention</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Nos solutions s'adaptent aux besoins spécifiques de chaque secteur</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Agriculture -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-green-50 flex items-center justify-center">
<i class="fas fa-tractor text-6xl text-green-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Agriculture</h3>
<p class="text-gray-600 mb-4">Solutions IoT pour l'agriculture de précision et l'optimisation des ressources.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
<!-- Elevage -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-blue-50 flex items-center justify-center">
<i class="fas fa-cow text-6xl text-blue-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Élevage</h3>
<p class="text-gray-600 mb-4">Suivi animalier et gestion automatisée des troupeaux avec nos solutions IoT.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
<!-- Industrie -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-yellow-50 flex items-center justify-center">
<i class="fas fa-industry text-6xl text-yellow-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Industrie</h3>
<p class="text-gray-600 mb-4">Automatisation industrielle et maintenance prédictive avec nos solutions IA.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
<!-- Defense -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-red-50 flex items-center justify-center">
<i class="fas fa-shield-alt text-6xl text-red-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Défense</h3>
<p class="text-gray-600 mb-4">Technologies sécurisées pour applications militaires et systèmes de surveillance.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
</div>
</div>
</section>
<!-- Technologies Section -->
<section id="technologies" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4 text-primary">Nos Technologies</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Nous maîtrisons les technologies les plus avancées pour vos projets</p>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
<!-- IA & Machine Learning -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-brain tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">IA & Machine Learning</h3>
<p class="text-sm text-gray-600 text-center">Modèles prédictifs et analytique avancée</p>
</div>
<!-- Automatisation -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-cogs tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Automatisation</h3>
<p class="text-sm text-gray-600 text-center">Processus industriels automatisés</p>
</div>
<!-- Robotique -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-robot tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Robotique</h3>
<p class="text-sm text-gray-600 text-center">Systèmes robotisés intelligents</p>
</div>
<!-- LINUX -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fab fa-linux tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">LINUX</h3>
<p class="text-sm text-gray-600 text-center">Systèmes embarqués et serveurs</p>
</div>
<!-- Reconnaissance d'image -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-eye tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Reconnaissance d'image</h3>
<p class="text-sm text-gray-600 text-center">Analyse et traitement d'images</p>
</div>
<!-- Business intelligence -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-chart-line tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Business intelligence</h3>
<p class="text-sm text-gray-600 text-center">Tableaux de bord analytiques</p>
</div>
<!-- Data Science -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-database tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Data Science</h3>
<p class="text-sm text-gray-600 text-center">Analyse de données massives</p>
</div>
<!-- IoT -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-network-wired tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">IoT</h3>
<p class="text-sm text-gray-600 text-center">Réseaux de capteurs intelligents</p>
</div>
<!-- Mobile -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Mobile</h3>
<p class="text-sm text-gray-600 text-center">Applications iOS et Android</p>
</div>
<!-- Web -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-globe tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Web</h3>
<p class="text-sm text-gray-600 text-center">Applications web modernes</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-primary text-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4">Contactez-nous</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Prêt à transformer votre activité avec nos solutions technologiques ?</p>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<form class="space-y-6">
<div>
<label for="name" class="block mb-2 font-medium">Votre nom</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="email" class="block mb-2 font-medium">Votre email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="service" class="block mb-2 font-medium">Service intéressé</label>
<select id="service" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white text-white">
<option value="">Sélectionnez un service</option>
<option value="logiciel">Ingénierie Logicielle</option>
<option value="hardware">Conception Hardware IoT</option>
<option value="ia">IA & Machine Learning</option>
<option value="autre">Autre</option>
</select>
</div>
<div>
<label for="message" class="block mb-2 font-medium">Votre message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white"></textarea>
</div>
<button type="submit" class="w-full bg-white text-primary px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition">Envoyer le message</button>
</form>
</div>
<div>
<div class="bg-white bg-opacity-10 p-8 rounded-xl h-full">
<h3 class="text-xl font-bold mb-6">Coordonnées</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-bold">Email</h4>
<p>contact@tikops.com</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-bold">Téléphone</h4>
<p>00225 0767163631</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-bold">Horaires</h4>
<p>Lundi - Vendredi: 8h - 18h</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold mb-4">Suivez-nous</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-primary flex items-center justify-center text-white font-bold text-lg mr-3">
<i class="fas fa-robot"></i>
</div>
<span class="text-xl font-bold">TIKOPS</span>
</div>
<p class="text-gray-400">Solutions technologiques innovantes pour l'agriculture, l'élevage, l'industrie et la défense.</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-primary transition">Ingénierie logicielle</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Conception Hardware IoT</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">IA & Machine Learning</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Secteurs</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-primary transition">Agriculture</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Élevage</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Industrie</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Défense</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Abonnez-vous pour recevoir nos dernières innovations.</p>
<div class="flex">
<input type="email" placeholder="Votre email" class="px-4 py-2 rounded-l-lg bg-gray-800 text-white focus:outline-none w-full">
<button class="bg-primary px-4 py-2 rounded-r-lg hover:bg-primaryDark transition">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 TIKOPS. Tous droits réservés.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-primary transition">Mentions légales</a>
<a href="#" class="text-gray-400 hover:text-primary transition">Confidentialité</a>
<a href="#" class="text-gray-400 hover:text-primary transition">CGU</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('button').addEventListener('click', function() {
const nav = document.querySelector('nav');
nav.classList.toggle('hidden');
nav.classList.toggle('flex');
nav.classList.toggle('flex-col');
nav.classList.toggle('absolute');
nav.classList.toggle('top-16');
nav.classList.toggle('left-0');
nav.classList.toggle('right-0');
nav.classList.toggle('bg-white');
nav.classList.toggle('p-4');
nav.classList.toggle('shadow-md');
nav.classList.toggle('space-y-4');
nav.classList.toggle('space-x-0');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const nav = document.querySelector('nav');
if (!nav.classList.contains('hidden')) {
nav.classList.add('hidden');
nav.classList.remove('flex', 'flex-col', 'absolute', 'top-16', 'left-0', 'right-0', 'bg-white', 'p-4', 'shadow-md', 'space-y-4', 'space-x-0');
}
});
});
// Form submission
const form = document.querySelector('form');
if (form) {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Merci pour votre message ! Nous vous contacterons bientôt.');
form.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=Ismaeldramani/tikops" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>