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 (
- +