Skip to content

Commit

Permalink
✨ landing UI rework
Browse files Browse the repository at this point in the history
  • Loading branch information
roiLeo committed Feb 21, 2022
1 parent 7ef353f commit d95c04a
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions components/rmrk/Gallery/CuratedList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
indicator-mode="click"
indicator-position="is-bottom"
indicator-style="is-lines">
<b-carousel-item v-for="(collection, i) in carousels" :key="i">
<b-carousel-item v-for="(collection, i) in collections" :key="i">
<b-image class="image" :src="collection.image"></b-image>
<div class="box">
<div class="content has-text-left">
Expand Down Expand Up @@ -66,15 +66,6 @@ const curatedCollection = [
export default class CuratedList extends mixins(AuthMixin) {
private collections: [] = []
get carousels() {
return [
{ title: 'Slide 1', color: 'info' },
{ title: 'Slide 2', color: 'success' },
{ title: 'Slide 3', color: 'warning' },
{ title: 'Slide 4', color: 'danger' },
]
}
async fetch() {
const result = await this.$apollo
.query<any>({
Expand Down

0 comments on commit d95c04a

Please sign in to comment.