53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { Lock } from "react-feather"
|
|
|
|
import { serverClient } from "@/lib/trpc/server"
|
|
|
|
import SectionContainer from "@/components/Section/Container"
|
|
import Header from "@/components/Section/Header"
|
|
import Chip from "@/components/TempDesignSystem/Chip"
|
|
import Grids from "@/components/TempDesignSystem/Grids"
|
|
import BiroScript from "@/components/TempDesignSystem/Text/BiroScript"
|
|
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
|
import { getIntl } from "@/i18n"
|
|
|
|
import styles from "./next.module.css"
|
|
|
|
import { AccountPageComponentProps } from "@/types/components/myPages/myPage/accountPage"
|
|
|
|
export default async function NextLevelBenefitsBlock({
|
|
title,
|
|
subtitle,
|
|
link,
|
|
}: AccountPageComponentProps) {
|
|
const { nextLevel, perks } = await serverClient().user.benefits.nextLevel()
|
|
const { formatMessage } = await getIntl()
|
|
return (
|
|
<SectionContainer>
|
|
<Header title={title} subtitle={subtitle} link={link} />
|
|
<Grids.Stackable>
|
|
{perks.map((perk) => (
|
|
<article key={perk.id} className={styles.card}>
|
|
<Chip>
|
|
<Lock height={16} />
|
|
{formatMessage({ id: "Level up to unlock" })}
|
|
</Chip>
|
|
<div>
|
|
<BiroScript
|
|
className={styles.level}
|
|
color="primaryLightOnSurfaceAccent"
|
|
textAlign="center"
|
|
type="two"
|
|
>
|
|
{formatMessage({ id: "As our" })} {nextLevel}
|
|
</BiroScript>{" "}
|
|
<Subtitle color="pale" textAlign="center">
|
|
{perk.explanation}
|
|
</Subtitle>
|
|
</div>
|
|
</article>
|
|
))}
|
|
</Grids.Stackable>
|
|
</SectionContainer>
|
|
)
|
|
}
|