Remove tailwind css from stylesheet and updated CV general to conform to ATS standards
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 25s

This commit is contained in:
2026-04-01 20:25:58 +01:00
parent a44011bf0b
commit 7e8e50f80a
4 changed files with 192 additions and 128 deletions

View File

@@ -7,13 +7,7 @@ import CVTemp from "./CVTemp.vue";
const CVHospitality = defineAsyncComponent(() => import("./CVHospitality.vue"));
const templates = [
{ label: "General", component: CVGeneral },
{ label: "Backend", component: CVBackend },
{ label: "Frontend", component: CVFrontend },
{ label: "Hospitality", component: CVHospitality },
{ label: "Temp", component: CVTemp },
];
const templates = [{ label: "General", component: CVGeneral }];
const selected = ref(0);
const currentComponent = shallowRef(templates[0].component);