philpelerin's picture
Nom de l'Appli : "Algo-Déclic : Oouvrez la Boîte Noire"
4567603 verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AlgoDex - Algorithmic Awareness</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/module-card.js"></script>
</head>
<body class="bg-gray-50 text-gray-800 font-sans">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="text-center py-16">
<h1 class="text-4xl md:text-6xl font-bold mb-6 text-indigo-700">
Decode the <span class="text-indigo-500">Black Box</span>
</h1>
<p class="text-xl md:text-2xl text-gray-600 max-w-3xl mx-auto mb-8">
From passive user to critical thinker - understand how algorithms shape your world
</p>
<a href="#modules" class="bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-3 px-8 rounded-full shadow-lg transition duration-300">
Start Learning
</a>
</section>
<!-- Module Grid -->
<section id="modules" class="py-12">
<h2 class="text-3xl font-bold text-center mb-12">Interactive Learning Modules</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<custom-module-card
title="The Factory"
icon="box"
description="Understand the lifecycle of AI systems"
color="indigo"
link="module1">
</custom-module-card>
<custom-module-card
title="The Recruiter"
icon="user-check"
description="Experience algorithmic bias firsthand"
color="purple"
link="module2">
</custom-module-card>
<custom-module-card
title="The Invisible Worker"
icon="users"
description="Discover human labor behind AI"
color="teal"
link="module3">
</custom-module-card>
<custom-module-card
title="The Mirror"
icon="eye"
description="Reflect on your own tech usage"
color="pink"
link="module4">
</custom-module-card>
</div>
</section>
<!-- About Section -->
<section class="py-12 bg-white rounded-xl shadow-md p-8 mb-12">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl font-bold mb-6">Why Algorithmic Literacy Matters</h2>
<p class="text-lg text-gray-700 mb-6">
In our digital age, algorithms influence everything from job opportunities to news consumption.
Yet most people interact with them as passive users, unaware of how they work or their societal impacts.
</p>
<p class="text-lg text-gray-700">
AlgoDex transforms this passive relationship into active understanding through interactive experiences
that reveal the inner workings, biases, and human components of algorithmic systems.
</p>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>