import { Heart } from "lucide-react"; import { Link } from "react-router-dom"; import { useI18n } from "../../i18n"; import { Reveal } from "../../motion"; import { useSetPageTitle } from "../../components/PageTitleContext"; export default function Favorites() { const { t } = useI18n(); // Show "ζˆ‘ηš„ζ”Άθ—" in the global header, consistent with the other pages. useSetPageTitle(t("favorites")); return (

{t("favorites")}

{t("favoritesComingSoon")}

{t("favoritesComingSoonDesc")}

{t("backToHome")}
); }