From eb7da056a6f7b34e536d6e7deb4209182cf00099 Mon Sep 17 00:00:00 2001 From: KS Jannette Date: Wed, 11 Feb 2026 18:20:03 -0500 Subject: [PATCH 1/7] cleaning up --- backend/package-lock.json | 4 ++-- backend/package.json | 4 ++-- frontend/index.html | 2 +- frontend/package-lock.json | 4 ++-- frontend/package.json | 2 +- frontend/src/components/button.tsx | 9 +++++---- frontend/src/components/stickies.tsx | 6 +++--- frontend/src/components/sticky.css | 14 ++++++++++++++ frontend/src/components/sticky.tsx | 14 ++------------ frontend/src/pages/Home.tsx | 2 +- 10 files changed, 33 insertions(+), 28 deletions(-) create mode 100644 frontend/src/components/sticky.css diff --git a/backend/package-lock.json b/backend/package-lock.json index ce23471..e28c13e 100644 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -1,11 +1,11 @@ { - "name": "resias-backend", + "name": "congruity-backend", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "resias-backend", + "name": "congruity-backend", "version": "0.1.0", "dependencies": { "@anthropic-ai/sdk": "^0.74.0", diff --git a/backend/package.json b/backend/package.json index a2db9dd..037abb4 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,7 +1,7 @@ { - "name": "resias-backend", + "name": "congruity-backend", "version": "0.1.0", - "description": "Resias AI clustering feature - backend for ProjectPilot", + "description": "congruity AI clustering feature - backend for ProjectPilot", "type": "module", "main": "server.js", "scripts": { diff --git a/frontend/index.html b/frontend/index.html index de74e7a..6db57ea 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,7 +4,7 @@ - Resias + congruity App
diff --git a/frontend/package-lock.json b/frontend/package-lock.json index c796e69..fe624c3 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,11 +1,11 @@ { - "name": "resias-frontend", + "name": "congruity-frontend", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "resias-frontend", + "name": "congruity-frontend", "version": "0.1.0", "dependencies": { "@tanstack/react-query": "^5.90.21", diff --git a/frontend/package.json b/frontend/package.json index 3946c9d..5cb5101 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,5 +1,5 @@ { - "name": "resias-frontend", + "name": "congruity-frontend", "private": true, "version": "0.1.0", "type": "module", diff --git a/frontend/src/components/button.tsx b/frontend/src/components/button.tsx index 13691ab..dbed6b2 100644 --- a/frontend/src/components/button.tsx +++ b/frontend/src/components/button.tsx @@ -1,14 +1,15 @@ -type ClusterButtonProps = { +type ButtonProps = { onClick: () => void; isLoading: boolean; + label: string; }; -const ClusterButton = ({ onClick, isLoading }: ClusterButtonProps) => { +const Button = ({ onClick, isLoading, label }: ButtonProps) => { return ( ); }; -export default ClusterButton; +export default Button; diff --git a/frontend/src/components/stickies.tsx b/frontend/src/components/stickies.tsx index 383dd41..c935e30 100644 --- a/frontend/src/components/stickies.tsx +++ b/frontend/src/components/stickies.tsx @@ -1,7 +1,7 @@ import { useGetStickies, useClusterStickies } from '../api/api'; import type { Sticky as StickyType } from '../types/types'; import Sticky from './sticky'; -import ClusterButton from './button'; +import Button from './button'; import './stickies.css'; const Stickies = () => { @@ -26,7 +26,7 @@ const Stickies = () => { return (
- + ); diff --git a/frontend/src/styles/button.css b/frontend/src/styles/button.css new file mode 100644 index 0000000..2673c22 --- /dev/null +++ b/frontend/src/styles/button.css @@ -0,0 +1,4 @@ +.primaryButton { + width: 10rem; + height: 2.5rem; +} \ No newline at end of file From 161ae7b7b817c2bec53bcb621b7c270edd2501db Mon Sep 17 00:00:00 2001 From: KS Jannette Date: Wed, 11 Feb 2026 18:37:12 -0500 Subject: [PATCH 3/7] more cleanup --- frontend/src/components/stickies.tsx | 4 ++-- frontend/src/styles/button.css | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/stickies.tsx b/frontend/src/components/stickies.tsx index c935e30..1e5c56e 100644 --- a/frontend/src/components/stickies.tsx +++ b/frontend/src/components/stickies.tsx @@ -26,7 +26,7 @@ const Stickies = () => { return (
-
{clusters.map((group) => (
@@ -46,7 +48,9 @@ const Stickies = () => { return (
-
{stickies?.map((sticky) => (