diff --git a/app/composables/projects.ts b/app/composables/projects.ts deleted file mode 100644 index 91d3dfc..0000000 --- a/app/composables/projects.ts +++ /dev/null @@ -1,21 +0,0 @@ -export function useProjectColors() { - const statusColors: Record = { - 'Active': 'blue', - 'Completed': 'green', - 'Archived': 'neutral', - 'In progress': 'amber' - } - - const typeColors: Record = { - 'Personal Project': 'purple', - 'Academic Project': 'sky', - 'Infrastructure Project': 'emerald', - 'Internship Project': 'orange', - 'Research Project': 'blue' - } - - return { - statusColors, - typeColors - } -}