This commit is contained in:
Mackie 2026-05-30 13:56:42 +08:00
parent e09ea98f1c
commit b6d65eabfa

View file

@ -66,7 +66,7 @@ type SkillsMarqueeBlockProps = {
export function SkillsMarqueeBlock({ heading }: SkillsMarqueeBlockProps) { export function SkillsMarqueeBlock({ heading }: SkillsMarqueeBlockProps) {
return ( return (
<section className="relative border-t border-foreground/10 py-8"> <section className="relative border-t border-foreground/10 pt-8 pb-0">
<p className="mb-6 text-center text-xs tracking-widest uppercase px-6 text-foreground/40"> <p className="mb-6 text-center text-xs tracking-widest uppercase px-6 text-foreground/40">
{heading || 'Skills'} {heading || 'Skills'}
</p> </p>
@ -77,7 +77,7 @@ export function SkillsMarqueeBlock({ heading }: SkillsMarqueeBlockProps) {
key={l.alt} key={l.alt}
src={l.src} src={l.src}
alt={l.alt} alt={l.alt}
className="h-14 w-auto flex-shrink-0 pointer-events-none select-none grayscale opacity-40 dark:opacity-50 dark:brightness-150" className="h-14 w-auto flex-shrink-0 pointer-events-none select-none grayscale opacity-40 dark:opacity-60 dark:brightness-200"
/> />
))} ))}
</InfiniteSlider> </InfiniteSlider>