feat: add initial support for points page
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { _ } from "@/lib/translation"
|
||||
|
||||
import styles from "./currentPointsBalance.module.css"
|
||||
|
||||
const CurrentPointsBalance = () => {
|
||||
const points = 30000
|
||||
|
||||
return (
|
||||
<div className={styles.card}>
|
||||
<h2>{_("Total points*")}</h2>
|
||||
<p className={styles.points}>{`${_("Points")}: ${points}`}</p>
|
||||
<p className={styles.disclaimer}>
|
||||
{_("*Points may take up to 10 days to be displayed.")}
|
||||
</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default CurrentPointsBalance
|
||||
Reference in New Issue
Block a user