Skip to content

Commit 96197e0

Browse files
committed
fix: resolve ts error
1 parent 54c4e6c commit 96197e0

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

app/page.tsx

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -70,26 +70,10 @@ export default function Home() {
7070
{tool.title}
7171
</h3>
7272
<p className="text-gray-400">{tool.subtitle}</p>
73-
{tool.comingSoon && (
74-
<span className="inline-block mt-3 px-2 py-1 text-xs font-medium bg-elevated text-tertiary rounded-full">
75-
Coming Soon
76-
</span>
77-
)}
7873
</div>
7974
</div>
8075
);
8176

82-
if (tool.comingSoon) {
83-
return (
84-
<div
85-
key={tool.id}
86-
className="card cursor-not-allowed transition-all duration-200 opacity-60"
87-
>
88-
{CardContent}
89-
</div>
90-
);
91-
}
92-
9377
return (
9478
<Link key={tool.id} href={tool.href!}>
9579
<div className="card cursor-pointer transition-all duration-200 hover:shadow-lg hover:border-primary hover:scale-105">

0 commit comments

Comments
 (0)