Skip to content

Commit 6c37d30

Browse files
committed
refactor: remove unnecessary client directive and hovereffects
1 parent 950ed7a commit 6c37d30

File tree

1 file changed

+1
-6
lines changed
  • packages/nextjs/app/builders/0xdc7f59D1F48187fA2dbB2C9Cc26fe1CcB0372828

1 file changed

+1
-6
lines changed

packages/nextjs/app/builders/0xdc7f59D1F48187fA2dbB2C9Cc26fe1CcB0372828/page.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use client";
2-
31
import { KEY_SKILLS, PROFILE_DATA } from "./constants";
42
import { Address } from "@scaffold-ui/components";
53
import type { NextPage } from "next";
@@ -47,10 +45,7 @@ const PrathmeshProfile: NextPage = () => {
4745
<h2 className="text-xl font-semibold">Skills</h2>
4846
<div className="flex flex-wrap gap-2">
4947
{KEY_SKILLS.map((skill, index) => (
50-
<span
51-
key={index}
52-
className="px-3 py-1 text-xs rounded-full bg-base-200 border border-base-300 hover:border-primary transition-colors"
53-
>
48+
<span key={index} className="px-3 py-1 text-xs rounded-full bg-base-200 border border-base-300">
5449
{skill}
5550
</span>
5651
))}

0 commit comments

Comments
 (0)