Skip to content

Commit

Permalink
Work on about page (#37)
Browse files Browse the repository at this point in the history
* Contributor addition on About page

* Cleanup
  • Loading branch information
seicke authored Sep 25, 2024
1 parent 1054b85 commit 5a89ea4
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 75 deletions.
Binary file added aas-web-ui/src/assets/Contributors/Eicke.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
152 changes: 77 additions & 75 deletions aas-web-ui/src/components/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,81 +66,36 @@

<h2>Contributors</h2>
<v-list item-props lines="three" class="bg-background">
<v-list-item>
<template #prepend>
<v-avatar>
<v-img src="Zielstorff.jpg">
<template #sources>
<source srcset="@/assets/Contributors/Zielstorff.jpg" />
</template>
</v-img>
</v-avatar>
</template>
<v-list-item-title>Aaron Zielstorff</v-list-item-title>
<v-list-item-subtitle
>Hochschule für Technik und Wirtschaft Berlin &mdash;
<a href="mailto:[email protected]"
>[email protected]</a
></v-list-item-subtitle
>
</v-list-item>
<v-divider inset></v-divider>
<v-list-item>
<template #prepend>
<v-avatar>
<v-img src="Schnicke.jpg">
<template #sources>
<source srcset="@/assets/Contributors/Schnicke.jpg" />
</template>
</v-img>
</v-avatar>
</template>
<v-list-item-title>Frank Schnicke</v-list-item-title>
<v-list-item-subtitle
>Fraunhofer IESE &mdash;
<a href="mailto:[email protected]"
>[email protected]</a
></v-list-item-subtitle
>
</v-list-item>
<v-divider inset></v-divider>
<v-list-item>
<template #prepend>
<v-avatar>
<v-img src="Buettner.jpg">
<template #sources>
<source srcset="@/assets/Contributors/Buettner.jpg" />
</template>
</v-img>
</v-avatar>
</template>
<v-list-item-title>Fiona Helena Büttner</v-list-item-title>
<v-list-item-subtitle
>Hochschule für Technik und Wirtschaft Berlin &mdash;
<a href="mailto:[email protected]"
>[email protected]</a
></v-list-item-subtitle
>
</v-list-item>
<v-divider inset></v-divider>
<v-list-item>
<template #prepend>
<v-avatar>
<v-img src="Fischer.jpg">
<template #sources>
<source srcset="@/assets/Contributors/Fischer.jpg" />
</template>
</v-img>
</v-avatar>
</template>
<v-list-item-title>Rene Pascal Fischer</v-list-item-title>
<v-list-item-subtitle
>Fraunhofer IESE &mdash;
<a href="mailto:[email protected]"
>[email protected]</a
></v-list-item-subtitle
>
</v-list-item>
<template v-for="(contributor, index) in contributors" :key="index">
<v-list-item>
<template #prepend>
<v-avatar>
<v-img :src="contributor.image">
<template #sources>
<source :srcset="'src/assets/Contributors/' + contributor.image" />
</template>
</v-img>
</v-avatar>
</template>
<template #append>
<a v-if="contributor?.github_link" :href="contributor.github_link" target="_blank">
<v-icon>mdi-github</v-icon>
</a>
<v-icon v-else>mdi-blank</v-icon>
&nbsp;
<a v-if="contributor?.linkedin_link" :href="contributor.linkedin_link" target="_blank">
<v-icon>mdi-linkedin</v-icon>
</a>
<v-icon v-else>mdi-blank</v-icon>
</template>
<v-list-item-title>{{ contributor.name }}</v-list-item-title>
<v-list-item-subtitle>
{{ contributor.company }} &mdash;
<a :href="'mailto:' + contributor.email">{{ contributor.email }}</a>
</v-list-item-subtitle>
</v-list-item>
<v-divider v-if="index < contributors.length - 1" inset></v-divider>
</template>
</v-list>

<br /><br />
Expand Down Expand Up @@ -183,5 +138,52 @@
export default defineComponent({
name: 'About',
data() {
return {
contributors: [
{
name: 'Aaron Zielstorff',
company: 'Fraunhofer IESE',
email: '[email protected]',
image: 'Zielstorff.jpg',
github_link: 'https://github.com/aaronzi',
linkedin_link: 'https://www.linkedin.com/in/aaron-zielstorff',
},
{
name: 'Frank Schnicke',
company: 'Fraunhofer IESE',
email: '[email protected]',
image: 'Schnicke.jpg',
github_link: 'https://github.com/FrankSchnicke',
linkedin_link: 'https://www.linkedin.com/in/frank-schnicke',
},
{
name: 'Fiona Helena Büttner',
company: 'Hochschule für Technik und Wirtschaft Berlin',
email: '[email protected]',
image: 'Buettner.jpg',
github_link: 'https://github.com/fyo21103',
linkedin_link: 'https://www.linkedin.com/in/fiona-helena-buettner',
},
{
name: 'Rene Pascal Fischer',
company: 'Fraunhofer IESE',
email: '[email protected]',
image: 'Fischer.jpg',
github_link: 'https://github.com/FischerRene',
linkedin_link: 'https://www.linkedin.com/in/fischer-rene',
},
{
name: 'Sebastian Eicke',
company: 'HARTING Technology Group',
email: '[email protected]',
image: 'Eicke.jpg',
github_link: 'https://github.com/seicke',
linkedin_link: 'https://www.linkedin.com/in/seicke',
},
] as Array<any>,
};
},
});
</script>

0 comments on commit 5a89ea4

Please sign in to comment.