Skip to content

Commit 057e495

Browse files
committed
fix text color issue on the website
1 parent 2f8c9ef commit 057e495

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

apps/web/src/app/(home)/_components/TechSelector.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ export function TechSelector({ onSelect, activeNodes }: TechSelectorProps) {
5858
Options
5959
</div>
6060

61-
{/* Regular tech options */}
6261
{Object.entries(techOptions)
6362
.filter(([category]) => category !== "addons")
6463
.map(([category, options]) => (
@@ -69,7 +68,7 @@ export function TechSelector({ onSelect, activeNodes }: TechSelectorProps) {
6968
<Badge
7069
key={option.id}
7170
variant="secondary"
72-
className={`cursor-pointer hover:bg-gray-700 ${
71+
className={`cursor-pointer hover:bg-gray-700 text-gray-300 ${
7372
activeNodes[
7473
category as keyof Omit<ActiveNodes, "addons">
7574
] === option.id && "bg-blue-600 text-white"
@@ -83,15 +82,14 @@ export function TechSelector({ onSelect, activeNodes }: TechSelectorProps) {
8382
</div>
8483
))}
8584

86-
{/* Feature toggles */}
8785
<div className="space-y-2">
8886
<div className="text-xs text-gray-400">Addons</div>
8987
<div className="flex flex-wrap gap-1">
9088
{techOptions.addons.map((option) => (
9189
<Badge
9290
key={option.id}
9391
variant="secondary"
94-
className={`cursor-pointer hover:bg-gray-700 ${
92+
className={`cursor-pointer hover:bg-gray-700 text-gray-300 ${
9593
activeNodes.addons[
9694
option.id as keyof typeof activeNodes.addons
9795
] === true && "bg-blue-600 text-white"

0 commit comments

Comments
 (0)