Files
asan-installer-front/src/components/awards/index.tsx
T
Alihaghighattalab 055a99c233 complete awards page
2024-08-11 15:25:15 +03:30

17 lines
703 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { AwardNotComplete } from "./award-not-complete"
import { AwardComplete } from "./awards-complete"
export const Awards = () => {
return (
<div className="flex flex-col gap-10">
<div className="flex flex-row justify-between items-center">
<p className="font-medium text-xl text-primary-text-color">جوایز (5)</p>
<p className="font-normal text-base text-primary-text-color">امتیازهای من: 65</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4 gap-6">
<AwardNotComplete />
<AwardComplete />
</div>
</div>
)
}