We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c4e6c commit 96197e0Copy full SHA for 96197e0
1 file changed
app/page.tsx
@@ -70,26 +70,10 @@ export default function Home() {
70
{tool.title}
71
</h3>
72
<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
- )}
78
</div>
79
80
);
81
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
-
93
return (
94
<Link key={tool.id} href={tool.href!}>
95
<div className="card cursor-pointer transition-all duration-200 hover:shadow-lg hover:border-primary hover:scale-105">
0 commit comments