"use client" import { Button } from "@/components/ui/button" import { ArrowRight, BookOpen } from "lucide-react" import { Link } from "@/i18n/navigation" import { useTranslations } from "next-intl" import Image from "next/image" export default function Hero() { const t = useTranslations("hero") return (
{/* Mobile version (visible only on small screens) */}

{t("title")}{" "} {t("tagline")}

{t("description")}

{/* Desktop version (visible only on medium and large screens) */}
{t("logoAlt")}

{t("title")}

{t("tagline")}

{t("description")}

) }