import Link from "next/link"; import MovingLogos from "./MovingLogos/page"; import { motion } from "framer-motion"; import { fadeIn, textVariant } from "src/utils/motion"; import { useTranslations } from "next-intl"; const Hero = () => { const t = useTranslations("page"); console.log("ssssst", t); return (
"

{t("title")}

"

{t("desc")}

{t("brand")}{" "}

); }; export default Hero;