From 926df49f4c23ffbdd317c69f0e962261eea76368 Mon Sep 17 00:00:00 2001 From: Sean S Date: Mon, 30 Jun 2025 20:47:49 -0400 Subject: [PATCH] Remove DaisyUI and replace with standard Tailwind classes - Replace btn-primary with bg-blue-600 hover:bg-blue-700 - Replace badge classes with custom Tailwind badge styling - Replace checkbox-primary with standard checkbox styling - Replace text-primary with text-blue-600 - Replace card classes with custom styling - Update ProductCard component styling --- .../(main)/account/forgot-password/page.tsx | 6 +- src/app/(main)/account/login/page.tsx | 8 +- src/app/(main)/account/register/page.tsx | 4 +- src/app/(main)/build/page.tsx | 2 +- src/app/(main)/page.tsx | 2 +- src/app/(main)/parts/page.tsx | 168 ++++++++++++++++-- src/components/Navbar.tsx | 18 +- src/components/ProductCard.tsx | 38 ++-- 8 files changed, 192 insertions(+), 54 deletions(-) diff --git a/src/app/(main)/account/forgot-password/page.tsx b/src/app/(main)/account/forgot-password/page.tsx index 5763fcd..7836b88 100644 --- a/src/app/(main)/account/forgot-password/page.tsx +++ b/src/app/(main)/account/forgot-password/page.tsx @@ -17,7 +17,7 @@ export default function ForgotPasswordPage() {

Forgot your password?

Enter your email address and we'll send you a link to reset your password.
- (This feature is not yet implemented.) + (This feature is not yet implemented.)

- Back to login + Back to login
diff --git a/src/app/(main)/account/login/page.tsx b/src/app/(main)/account/login/page.tsx index 9126b53..26e3275 100644 --- a/src/app/(main)/account/login/page.tsx +++ b/src/app/(main)/account/login/page.tsx @@ -55,7 +55,7 @@ export default function LoginPage() {

Sign in to your account

Or{' '} - + Sign Up For Free

@@ -109,7 +109,7 @@ export default function LoginPage() { id="remember-me" name="remember-me" type="checkbox" - className="checkbox checkbox-primary" + className="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded" disabled={loading} />