diff --git a/src/components/JobApplicationUtilities.tsx b/src/components/JobApplicationUtilities.tsx
index 3457990..c26a061 100644
--- a/src/components/JobApplicationUtilities.tsx
+++ b/src/components/JobApplicationUtilities.tsx
@@ -9,11 +9,11 @@ export const statusMap: { [key: number]: string } = {
};
export const statusStyles: { [key: string]: string } = {
- Submitted: 'bg-yellow-200 text-yellow-800',
- Interviewing: 'bg-green-200 text-green-800',
- Offer: 'bg-teal-300 text-teal-900',
- Rejected: 'bg-red-200 text-red-800',
- 'Phone Screen': 'bg-yellow-300 text-yellow-900',
- 'Code Challenge': 'bg-blue-200 text-blue-800',
- 'Not Yet Applied': 'bg-orange-200 text-orange-800',
+ Submitted: 'bg-yellow-200 text-black',
+ Interviewing: 'bg-green-100 text-black',
+ Offer: 'bg-teal-600 text-white',
+ Rejected: 'bg-red-500 text-white',
+ 'Phone Screen': 'bg-yellow-300 text-black',
+ 'Code Challenge': 'bg-blue-200 text-black',
+ 'Not Yet Applied': 'bg-gray-200 text-black',
};
\ No newline at end of file
diff --git a/src/components/JobApplications/JobApplications.tsx b/src/components/JobApplications/JobApplications.tsx
index a951aaf..97fb589 100644
--- a/src/components/JobApplications/JobApplications.tsx
+++ b/src/components/JobApplications/JobApplications.tsx
@@ -33,73 +33,72 @@ const ApplicationsGrid: React.FC = () => {
}
return (
-
- {isLoading ? (
-
-
-
- ) : (
- <>
-
Applications
-
-
-
+
+
+ {isLoading ? (
+
+
+
+ ) : (
+ <>
+
+ Applications
+
+
+
setSearchTerm(e.target.value)}
- />
+ />
+
+
+
-
-
-
-
-
-
-
-
-
- Company |
- Title |
- Status |
- Last Updated |
+
+
+
+ Company |
+ Title |
+ Status |
+ Last Updated |
{filteredApplications.map((app) => (
-
+ |
{app.company_name || app.company_id}
|
-
+ |
{app.position_title}
|
-
+ |
{statusMap[app.status]}
|
-
+ |
{app.updated_at}
@@ -115,10 +114,10 @@ const ApplicationsGrid: React.FC = () => {
)}
|
-
- >
- )}
-
+ >
+ )}
+
+
);
};