diff --git a/src/views/CareerPathView.vue b/src/views/CareerPathView.vue index 0762133..aeaa881 100644 --- a/src/views/CareerPathView.vue +++ b/src/views/CareerPathView.vue @@ -9,6 +9,11 @@ import IndustryIcon from '@/assets/icons/IndustryIcon.vue' import TruckIcon from '@/assets/icons/TruckIcon.vue' import BoxesIcon from '@/assets/icons/BoxesIcon.vue' +interface Job { + title: string; + desc: string; +} + const jobIcons = [ WhiskeyGlassIcon, TreeIcon, @@ -27,7 +32,7 @@ const jobIcons = [ - +