enhancements

This commit is contained in:
2025-10-24 06:22:28 +03:00
parent 3a827a8f69
commit 251e7a9369
3 changed files with 24 additions and 11 deletions

View File

@@ -66,12 +66,23 @@ const LoyaltyCard = () => {
value: restaurant?.loyalty_stamps ?? 0,
})}
{!token && (
<Link
to={`/${id}/login`}
style={{ color: colors.primary, marginTop: 4 }}
>
{t("menu.joinToEarn")}
</Link>
<div style={{ paddingTop: 4 }}>
<Link
to={`/${id}/login`}
style={{
color: colors.primary,
textDecoration: "underline",
fontSize: "14px",
fontWeight: 400,
padding: "0 4px",
}}
>
{t("menu.joinUs")}
</Link>
<span style={{ fontSize: "14px", color: colors.secondary }}>
{t("menu.joinUsDescription")}
</span>
</div>
)}
</ProText>
</Col>