Components
Loading preview...
This is a point boost component
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/points-boostimport { PointsBoost } from "@/components/ui/points-boost"
export default function Demo() {
return (
<div style={{ padding: "16px 8px" }}>
<PointsBoost
boost={{
name: "Double Points Weekend",
status: "active",
description: "Earn extra points for all tracked actions",
multiplier: 2,
}}
cta={{
link: "#",
text: "Activate boost",
}}
/>
</div>
)
}