import { motion } from "framer-motion"; import { useTranslation } from "react-i18next"; import Link from "next/link"; import { Building } from "lucide-react"; export default function ShowIfOwner({ name }) { const { t } = useTranslation(); return ( <>

{t("ownerGreeting")} {name ?? " notFound "}!

{t("ownerDescription")}

{t("manageMyProperties")}
); }