import Image from "next/image"; import Link from "next/link"; import { Button } from "@/components/ui/button"; import { Progress } from "@/components/ui/progress"; import { QUESTS } from "@/constants"; type QuestsProps = { points: number }; export const Quests = ({ points }: QuestsProps) => { return (

Quests

); };