import { useTranslations } from "next-intl"; import Image from "next/image"; import starsImage from "/public/images/stars.avif"; export default function PageIntro() { const t = useTranslations("pageIntro"); return (

{t("heading")}{" "} {t("highlightedText")}

{t("description.line1")}
{t("description.line2")}
{t("description.line3")}

{t("startForFree")}
ratings
{t("ratings")}

{t("madeWithLove")}

); }