fix: colors

This commit is contained in:
Kentai Radiquum 2025-07-26 23:32:42 +05:00
parent 94e55edf4c
commit 2e734f3cb8
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 6 additions and 5 deletions

View file

@ -54,7 +54,7 @@ export const Projects = () => {
<div className="grid grid-cols-1 gap-2 md:grid-cols-2 xl:grid-cols-3">
{links.map((item) => (
<Link href={item.url} key={`projects.link.${item.text}`}>
<IconWithText icon={item.icon} text={item.text} desc={item.desc} />
<IconWithText icon={item.icon} text={item.text} desc={item.desc} backgroundColor={"#101316"} backgroundOpacity={"5%"} />
</Link>
))}
</div>