ADD: Better Network view

This commit is contained in:
webfussel 2024-05-22 13:41:58 +02:00
parent 40beae70e9
commit aadf90efce
7 changed files with 34 additions and 10 deletions

View file

@ -27,8 +27,10 @@
<p class="margin-top">Doch auch wenn ich mal voll ausgelastet bin - keine Sorge!
Mein <span class="highlight">Netzwerk an Profis</span> kann dir sicher auch weiterhelfen.
</p>
<div class="network-list default-gap margin-top">
<Person ref="persons" v-for="person in network" v-bind="person" />
<div class="network-list margin-top">
<div class="scroll-container default-gap">
<Person ref="persons" v-for="person in network" v-bind="person" />
</div>
</div>
</section>
</template>
@ -94,6 +96,12 @@ const network = [
tags: ['Onlineportale für Patienten', 'Kunden', 'Mitarbeiter'],
flavour: 'Software die macht, was DU willst!',
link: 'https://mind-deploy.de',
}, {
name: 'Maximilian Schluer',
img: '/img/network/maximilian.jpg',
tags: ['iOS Development', 'Software-QA'],
flavour: 'Kann Ihr iOS-Team unterstützen oder ihr Software-Qualitätsproblem lösen egal welches.',
link: 'https://max-shluer.de',
},
]
</script>