From c0a63903e718ec0679c8dc20087c095cddcbd40e Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 21:30:31 +0000 Subject: [PATCH] Replace HTML buttons with shadcn UI Button components for sign in/sign up - Added Button import from @/components/ui/button - Replaced Sign In button with Button variant='outline' - Replaced Sign Up button with Button variant='default' - Maintains existing styling and functionality Fixes #7 Co-authored-by: Tom Phillips --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a7fcd3e..514293d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import { SignedOut, UserButton, } from "@clerk/nextjs"; +import { Button } from "@/components/ui/button"; import "./globals.css"; const geistSans = Geist({ @@ -41,14 +42,14 @@ export default function RootLayout({
- + - +