Skip to content

Commit

Permalink
Add landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
venimus authored and davidyuk committed Apr 12, 2021
1 parent 40fcf79 commit a38058d
Show file tree
Hide file tree
Showing 28 changed files with 3,097 additions and 1,290 deletions.
2,699 changes: 1,442 additions & 1,257 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
"@aeternity/aepp-sdk": "^7.7.0",
"@dicebear/avatars": "^4.5.2",
"@dicebear/avatars-avataaars-sprites": "^4.5.2",
"@fontsource/oxygen": "^4.2.1",
"aeternity-fungible-token": "github:aeternity/aeternity-fungible-token#v1.0.0",
"animate.css": "^4.1.1",
"autosize": "^4.0.2",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
Expand All @@ -38,6 +40,7 @@
"soundcloud-widget": "^0.2.1",
"tipping-contract": "github:aeternity/tipping-contract#v3.0.1-alpha1",
"vue": "^2.6.12",
"vue-aos": "^1.1.0",
"vue-chartjs": "^3.5.1",
"vue-i18n": "^8.22.3",
"vue-meta": "^2.4.0",
Expand Down
10 changes: 9 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<template>
<div id="app">
<div
id="app"
:class="$route.meta.layoutClass"
>
<MobileNavigation v-if="!$route.meta.fullScreen" />
<div class="not-bootstrap-row">
<div
Expand Down Expand Up @@ -38,10 +41,15 @@ export default {
components: { MobileNavigation, LeftSection, RightSection },
computed: {
...mapGetters('modals', ['opened']),
...mapGetters(['isLoggedIn']),
...mapState(['address']),
...mapState('aeternity', ['sdk']),
},
async mounted() {
if (!this.isLoggedIn && this.$route.name === 'feed') {
this.$router.push({ name: 'landing' });
}
EventBus.$on('reloadData', () => {
this.reloadData();
});
Expand Down
27 changes: 27 additions & 0 deletions src/assets/landing/appstore.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/banner-bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/banner-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/bg-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/github.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/landing/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a38058d

Please sign in to comment.