From 89288f059e3a8cba20a9d87d2c2606826cf06568 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:55:59 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 120 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..d51b010 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,120 @@ +"use client"; + +import Balancer from "react-wrap-balancer"; +import { Button } from "./ui/button"; +import { HiArrowRight } from "react-icons/hi2"; +import { Badge } from "./badge"; +import { motion } from "framer-motion"; + +import Image from "next/image"; +import { useRouter } from "next/navigation"; +import Link from "next/link"; + +export const Hero = () => { + const router = useRouter(); + return ( +
+ + {/* removed badge */} + + + Explorez l'Histoire, la Littérature et l'Érudition + +
+
+
+
+
+ + + Mnémosyne est le point de rencontre des passionnés de culture. Partagez vos recherches, débattez d'idées et enrichissez votre savoir au sein d'une communauté d'érudits. + + + + + + +
+
+
+ Vue de l'Acropole d'Athènes, Grèce Antique +
+
+
+ ); +};