mon-portfolio / index.html
lamba66's picture
Je viens de finir une formation en IA sur laquelle j'ai travaillé sur plusieurs projets que voici: Projet1: Détection d'objet image vidéo Description: Détecté une objet sur une image ou dans une vidéo Url_app = https://huggingface.co/spaces/lamba66/Detection_Objet_im_video Projet2: Analyse de Sentiment de Tweets avec lstm Description: Analyse de sentiment en partant d’un tweet. Url_app = https://huggingface.co/spaces/lamba66/Sentiments_Analytics Je voudrais que tu me crée un portfolio à travers lequel j’ai une rubrique pour tous ces projets sur lesquels j’ai travaillé. - Initial Deployment
61a4a81 verified
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio IA - Projets en Intelligence Artificielle</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.project-card {
transition: all 0.3s ease;
transform: translateY(0);
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.hero-gradient {
background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
}
.section-title {
position: relative;
display: inline-block;
}
.section-title:after {
content: '';
position: absolute;
width: 50%;
height: 4px;
bottom: -8px;
left: 0;
background: linear-gradient(90deg, #6e8efb 0%, #a777e3 100%);
border-radius: 2px;
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #6e8efb;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.floating {
animation: float 6s ease-in-out infinite;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm fixed w-full z-10">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<span class="text-xl font-bold text-indigo-600">IA Portfolio</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-indigo-600">Accueil</a>
<a href="#about" class="nav-link text-gray-700 hover:text-indigo-600">À propos</a>
<a href="#projects" class="nav-link text-gray-700 hover:text-indigo-600">Projets</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-indigo-600">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button class="text-gray-700 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient pt-24 pb-16 md:pt-32 md:pb-24 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="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-4">Projets en Intelligence Artificielle</h1>
<p class="text-xl mb-8 opacity-90">Découvrez mes réalisations en apprentissage automatique et vision par ordinateur</p>
<a href="#projects" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300 inline-block">Voir les projets</a>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://cdn-icons-png.flaticon.com/512/2103/2103633.png" alt="IA Illustration" class="w-64 h-64 floating">
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold mb-12 section-title">À propos</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-8 md:mb-0 flex justify-center">
<div class="w-48 h-48 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-user-tie text-6xl text-indigo-600"></i>
</div>
</div>
<div class="md:w-2/3 md:pl-12">
<h3 class="text-2xl font-semibold mb-4">Formation en Intelligence Artificielle</h3>
<p class="text-gray-600 mb-4">Je viens de terminer une formation intensive en Intelligence Artificielle où j'ai pu développer des compétences solides en machine learning, deep learning et traitement des données.</p>
<p class="text-gray-600 mb-6">Durant cette formation, j'ai travaillé sur plusieurs projets concrets mettant en œuvre différentes techniques d'IA, notamment la vision par ordinateur et le traitement automatique du langage naturel.</p>
<div class="flex flex-wrap gap-3">
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Python</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">TensorFlow</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Keras</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">OpenCV</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">NLP</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">LSTM</span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold mb-12 section-title">Mes Projets</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Projet 1 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 bg-indigo-100 flex items-center justify-center">
<i class="fas fa-eye text-6xl text-indigo-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Détection d'objet image vidéo</h3>
<p class="text-gray-600 mb-4">Un système de détection d'objets en temps réel fonctionnant sur des images et des flux vidéo, utilisant des modèles de deep learning avancés.</p>
<div class="mb-4">
<span class="inline-block bg-indigo-100 text-indigo-800 text-xs px-2 py-1 rounded-full mr-2">Computer Vision</span>
<span class="inline-block bg-indigo-100 text-indigo-800 text-xs px-2 py-1 rounded-full mr-2">YOLO</span>
<span class="inline-block bg-indigo-100 text-indigo-800 text-xs px-2 py-1 rounded-full">OpenCV</span>
</div>
<a href="https://huggingface.co/spaces/lamba66/Detection_Objet_im_video" target="_blank" class="text-indigo-600 font-medium hover:text-indigo-800 inline-flex items-center">
Voir le projet
<i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
<!-- Projet 2 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-comment-dots text-6xl text-purple-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Analyse de Sentiment de Tweets avec LSTM</h3>
<p class="text-gray-600 mb-4">Un modèle d'analyse de sentiments capable de classifier les tweets en sentiments positifs, négatifs ou neutres en utilisant des réseaux LSTM.</p>
<div class="mb-4">
<span class="inline-block bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded-full mr-2">NLP</span>
<span class="inline-block bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded-full mr-2">LSTM</span>
<span class="inline-block bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded-full">TensorFlow</span>
</div>
<a href="https://huggingface.co/spaces/lamba66/Sentiments_Analytics" target="_blank" class="text-purple-600 font-medium hover:text-purple-800 inline-flex items-center">
Voir le projet
<i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Placeholder for future projects -->
<div class="mt-12 text-center">
<h3 class="text-xl font-semibold mb-4">Plus de projets à venir...</h3>
<p class="text-gray-600">Je continue à développer de nouveaux projets et à améliorer mes compétences en IA.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold mb-12 section-title">Contact</h2>
<div class="max-w-2xl mx-auto">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Nom</label>
<input type="text" id="name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
<input type="email" id="email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700">Message</label>
<textarea id="message" rows="4" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500"></textarea>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Envoyer
</button>
</div>
</form>
<div class="mt-12 flex justify-center space-x-6">
<a href="#" class="text-gray-600 hover:text-indigo-600">
<i class="fab fa-github text-2xl"></i>
</a>
<a href="#" class="text-gray-600 hover:text-blue-600">
<i class="fab fa-linkedin text-2xl"></i>
</a>
<a href="#" class="text-gray-600 hover:text-blue-400">
<i class="fab fa-twitter text-2xl"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<span class="text-xl font-bold">IA Portfolio</span>
<p class="text-gray-400 mt-2">Développement d'applications d'Intelligence Artificielle</p>
</div>
<div class="flex space-x-6">
<a href="#home" class="text-gray-400 hover:text-white">Accueil</a>
<a href="#about" class="text-gray-400 hover:text-white">À propos</a>
<a href="#projects" class="text-gray-400 hover:text-white">Projets</a>
<a href="#contact" class="text-gray-400 hover:text-white">Contact</a>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-700 text-center text-gray-400 text-sm">
<p>&copy; 2023 Portfolio IA. Tous droits réservés.</p>
</div>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Mobile menu toggle (placeholder - would need implementation)
const mobileMenuButton = document.querySelector('button');
mobileMenuButton.addEventListener('click', function() {
// Implementation for mobile menu would go here
console.log('Mobile menu clicked');
});
</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=lamba66/mon-portfolio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>