-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
69 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,14 @@ | ||
<script> | ||
import ActionMetagardenBuySpot from '~/components/ActionMetagardenBuySpot.vue'; | ||
export default { | ||
components: { | ||
ActionMetagardenBuySpot, | ||
}, | ||
data() { | ||
return { | ||
}; | ||
}, | ||
computed: { | ||
layout: 'splash', | ||
asyncData({redirect, app}) { | ||
return redirect(app.i18nGetPreferredPath('/metagarden/buy-spot')); | ||
}, | ||
}; | ||
</script> | ||
|
||
<template> | ||
<div class="u-section u-container u-container--small"> | ||
<div class="card card--invert"> | ||
<div class="card__content card__content--medium"> | ||
<h1 class="card__action-title-value">{{ $td('Buy metagarden mining spots', 'metagarden.title') }}</h1> | ||
<p class="card__action-description u-mt-05"> | ||
{{ $td('One spot costs $80 or 1000 METAGARDEN tokens', 'metagarden.description') }} | ||
</p> | ||
</div> | ||
|
||
<div class="card card--pop card--light-grey"> | ||
<ActionMetagardenBuySpot | ||
class="card__content card__content--medium" | ||
@success-modal-close="$router.push($getDashboardUrl())" | ||
/> | ||
|
||
|
||
<!-- <div class="card__content card__content--medium u-text-medium"> | ||
<h3 class="u-h5 u-mb-05">Terms & Conditions</h3> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Massa pellentesque donec in mus mi massa fusce netus. Nec gravida faucibus pellentesque aliquam consequat sed. Dignissim suspendisse blandit lacinia amet. Cras tincidunt nec maecenas eleifend nisl tristique volutpat enim habitant.</p> | ||
</div>--> | ||
</div> | ||
</div> | ||
Loading… | ||
</div> | ||
</template> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<script> | ||
import ActionMetagardenBuySpot from '~/components/ActionMetagardenBuySpot.vue'; | ||
export default { | ||
components: { | ||
ActionMetagardenBuySpot, | ||
}, | ||
data() { | ||
return { | ||
}; | ||
}, | ||
computed: { | ||
}, | ||
}; | ||
</script> | ||
|
||
<template> | ||
<div class="u-section u-container u-container--small"> | ||
<div class="card card--invert"> | ||
<div class="card__content card__content--medium"> | ||
<h1 class="card__action-title-value">{{ $td('Buy metagarden mining spots', 'metagarden.title') }}</h1> | ||
<p class="card__action-description u-mt-05"> | ||
{{ $td('One spot costs $80 or 1000 METAGARDEN tokens', 'metagarden.description') }} | ||
</p> | ||
</div> | ||
|
||
<div class="card card--pop card--light-grey"> | ||
<ActionMetagardenBuySpot | ||
class="card__content card__content--medium" | ||
@success-modal-close="$router.push($getDashboardUrl())" | ||
/> | ||
|
||
|
||
<!-- <div class="card__content card__content--medium u-text-medium"> | ||
<h3 class="u-h5 u-mb-05">Terms & Conditions</h3> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Massa pellentesque donec in mus mi massa fusce netus. Nec gravida faucibus pellentesque aliquam consequat sed. Dignissim suspendisse blandit lacinia amet. Cras tincidunt nec maecenas eleifend nisl tristique volutpat enim habitant.</p> | ||
</div>--> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
export default { | ||
layout: 'splash', | ||
asyncData({redirect, app}) { | ||
return redirect(app.i18nGetPreferredPath('/metagarden/buy-spot')); | ||
}, | ||
}; | ||
</script> | ||
|
||
<template> | ||
<div class="u-section u-container u-container--small"> | ||
Loading… | ||
</div> | ||
</template> |