diff --git a/components/projects.tsx b/components/projects.tsx new file mode 100644 index 0000000..1e9a67e --- /dev/null +++ b/components/projects.tsx @@ -0,0 +1,72 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import Image from "next/image"; +import { Badge } from "@/components/badge"; + +const projects = [ + { + title: "L'Encyclopédie des Savoirs", + description: "Une archive numérique interactive regroupant les découvertes majeures du XIXe siècle.", + image: "https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?q=80&w=800&auto=format&fit=crop", + tags: ["Histoire", "Archive", "Web Design"], + }, + { + title: "Mnémosyne Engine", + description: "Algorithme de classification sémantique inspiré des méthodes de mémorisation antiques.", + image: "https://images.unsplash.com/photo-1507413245164-6160d8298b31?q=80&w=800&auto=format&fit=crop", + tags: ["IA", "Algorithme", "Recherche"], + }, + { + title: "Le Cercle des Érudits", + description: "Plateforme de collaboration pour chercheurs et historiens du monde entier.", + image: "https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?q=80&w=800&auto=format&fit=crop", + tags: ["Communauté", "SaaS", "Éducation"], + }, +]; + +export function Projects() { + return ( +
+ +
+ Portfolio + Travaux & Recherches + + Une sélection de projets alliant rigueur académique et innovation technologique. + +
+
+ {projects.map((project, index) => ( + +
+ {project.title} +
+ +
+ {project.tags.map((tag) => ( + + {tag} + + ))} +
+ {project.title} + + {project.description} + +
+
+ ))} +
+
+
+ ); +}