Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
fix: remove deterministicRotate (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
manniL committed Feb 28, 2019
1 parent 05a3e58 commit d6db098
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
27 changes: 13 additions & 14 deletions pages/about.vue
Expand Up @@ -10,27 +10,32 @@
</section>
<section class="md:mx-16 my-24 bg-rains-light xl:flex">
<TeamMember
v-for="(member, i) in $options.members"
:key="i"
:links="member.links"
:name="member.name"
v-for="member in $options.members"
:key="member.slug"
v-bind="member"
:odd="!!(i%2)"
:slug="member.slug"
/>
</section>
</div>
</template>

<script>
import { deterministicRotate } from '~/shared/helpers'
import TeamMember from '~/components/about-us/TeamMember'
export default {
scrollToTop: true,
components: {
TeamMember
},
members: deterministicRotate([
computed: {
head() {
return this.$createSeo('about', [{
name: 'og:image',
content: require('~/assets/img/bg/about-us.jpg')
}])
}
},
members: [
{
slug: 'alex',
name: 'Alexander Lichter',
Expand All @@ -51,13 +56,7 @@ export default {
linkedin: 'https://www.linkedin.com/in/max-langer-17b133136/'
}
}
]),
head() {
return this.$createSeo('about', [{
name: 'og:image',
content: require('~/assets/img/bg/about-us.jpg')
}])
}
]
}
</script>

Expand Down
19 changes: 9 additions & 10 deletions pages/work/index.vue
Expand Up @@ -46,7 +46,6 @@
</template>

<script>
import { deterministicRotate } from '~/shared/helpers'
import WorkPreview from '~/components/work/WorkPreview'
export default {
Expand All @@ -67,10 +66,11 @@ export default {
}
}
},
projects: deterministicRotate([
projects: [
{
slug: 'addism',
url: 'https://addism.de/'
slug: 'nuxt',
url: 'https://nuxtjs.org/',
svg: () => import('~/assets/img/work/nuxt.svg')
},
{
slug: 'itexia',
Expand All @@ -81,13 +81,12 @@ export default {
url: 'https://hochschulinitiative-deutschland.de/'
},
{
slug: 'lichter-io',
url: 'https://lichter.io/'
slug: 'addism',
url: 'https://addism.de/'
},
{
slug: 'nuxt',
url: 'https://nuxtjs.org/',
svg: () => import('~/assets/img/work/nuxt.svg')
slug: 'lichter-io',
url: 'https://lichter.io/'
},
{
slug: 'ostseeferien-binz',
Expand All @@ -97,7 +96,7 @@ export default {
slug: 'association-manager',
url: ''
}
]),
],
numbers: [
{
duration: 1000,
Expand Down

0 comments on commit d6db098

Please sign in to comment.