stuff done

This commit is contained in:
2025-03-11 02:54:09 +02:00
parent 58e7ed2f06
commit 516b45fad9
90 changed files with 2950 additions and 9458 deletions

View File

@@ -2,15 +2,16 @@ import {Star} from 'lucide-react'
const startStroke = 1.5
const color = '#ffd139'
const size = 16
export default function RateStars() {
return (
<div className='bw-rating absolute bottom-2 left-4 inline-flex h-[32px] items-center gap-1'>
<Star strokeWidth={startStroke} color={color} fill={color} />
<Star strokeWidth={startStroke} color={color} fill={color} />
<Star strokeWidth={startStroke} color={color} fill={color} />
<Star strokeWidth={startStroke} color={color} />
<Star strokeWidth={startStroke} color={color} />
<div className='bw-rating absolute bottom-1 left-3 inline-flex h-[32px] items-center gap-1'>
<Star size={size} strokeWidth={startStroke} color={color} fill={color} />
<Star size={size} strokeWidth={startStroke} color={color} fill={color} />
<Star size={size} strokeWidth={startStroke} color={color} fill={color} />
<Star size={size} strokeWidth={startStroke} color={color} />
<Star size={size} strokeWidth={startStroke} color={color} />
</div>
)
}