diff --git a/apps/web/src/app/(auth)/forgot-password/page.tsx b/apps/web/src/app/(auth)/forgot-password/page.tsx index 56b6bd7..af1403c 100644 --- a/apps/web/src/app/(auth)/forgot-password/page.tsx +++ b/apps/web/src/app/(auth)/forgot-password/page.tsx @@ -2,6 +2,7 @@ import { Button } from '@tpmjs/ui/Button/Button'; import { Input } from '@tpmjs/ui/Input/Input'; +import { Label } from '@tpmjs/ui/Label/Label'; import Link from 'next/link'; import { useState } from 'react'; @@ -63,16 +64,17 @@ export default function ForgotPasswordPage() {

Didn't receive the email?{' '} - +

@@ -101,9 +103,7 @@ export default function ForgotPasswordPage() { )}

- + - +
- +
@ @@ -245,9 +242,7 @@ export default function SignUpPage() {
- +
- + - + - +
@ @@ -292,9 +289,7 @@ function ProfileSettingsContent({ isSetupMode }: { isSetupMode: boolean }): Reac {/* Email (read-only) */}
- +
- - Error warning icon - - +

Something went wrong diff --git a/apps/web/src/app/tool-ideas/ToolIdeasClient.tsx b/apps/web/src/app/tool-ideas/ToolIdeasClient.tsx index 559e002..85f7c2c 100644 --- a/apps/web/src/app/tool-ideas/ToolIdeasClient.tsx +++ b/apps/web/src/app/tool-ideas/ToolIdeasClient.tsx @@ -3,6 +3,7 @@ import { Badge } from '@tpmjs/ui/Badge/Badge'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@tpmjs/ui/Card/Card'; import { Input } from '@tpmjs/ui/Input/Input'; +import { Label } from '@tpmjs/ui/Label/Label'; import { ProgressBar } from '@tpmjs/ui/ProgressBar/ProgressBar'; import { Select } from '@tpmjs/ui/Select/Select'; import { Spinner } from '@tpmjs/ui/Spinner/Spinner'; @@ -99,9 +100,9 @@ export function ToolIdeasClient() { }, [fetchTools]); const qualityColor = (score: number) => { - if (score >= 0.9) return 'text-green-600'; - if (score >= 0.7) return 'text-yellow-600'; - return 'text-red-600'; + if (score >= 0.9) return 'text-success'; + if (score >= 0.7) return 'text-warning'; + return 'text-error'; }; const ToolCard = ({ tool }: { tool: ToolIdea }) => { @@ -227,12 +228,7 @@ export function ToolIdeasClient() { {/* Filters */}
- +
- +
- +