diff --git a/Globals.css b/Globals.css index af59b09..6d91fbf 100644 --- a/Globals.css +++ b/Globals.css @@ -133,6 +133,7 @@ span.chip { color: var(--color-black); height: max-content; padding: .5em 1em; + user-select: none; } .card { diff --git a/components/Customers/Customers.vue b/components/Customers/Customers.vue index 3e8d96e..ed843fe 100644 --- a/components/Customers/Customers.vue +++ b/components/Customers/Customers.vue @@ -78,12 +78,21 @@ const customers = [ const projects = [ { + title: 'Unterricht', + customer: 'SAE Institute Germany', + link: 'https://www.sae.edu/deu/en/sae-home/', + image: '/img/projects/education.jpg', + desc: [ + 'Vorbereitung und Durchführung von Unterricht in JavaScript und TypeScript.', + ], + technologies: [js, ts] + }, { title: 'Headless CMS & Cache', customer: 'Dekra', link: 'https://dekra.de', image: '/img/projects/dekra.png', desc: [ - 'Anbindung an ein Headless CMS und Entwicklung der dazugehörigen Komponentenbibliothek, sowie Serverseitiges Caching.', + 'Anbindung an ein Headless CMS und Entwicklung der dazugehörigen Komponentenbibliothek, sowie Serverseitiges Caching.', ], technologies: [ts, nuxt, tw, njs] }, diff --git a/public/img/projects/education.jpg b/public/img/projects/education.jpg new file mode 100644 index 0000000..fb6c50b Binary files /dev/null and b/public/img/projects/education.jpg differ