Skip to content

Commit 5b6fe3f

Browse files
srteerraGuapura89
andauthored
Some new views added and features updated (#4)
* docker set up * new scrollbar and leadboard top donator style * counterjs integrated * step 3 done on dashboard * step 3 almost done with detectins * address book modal added * main step changed * topAd site url changed * Our token view created and almost done * our token section completed * adding leaves on titles * starting learn page * Roadmap added * Give us a coffee section added * Merge completed * Responsive in about view: fixed * learn page completed * changes on root files and env Co-authored-by: Guapura89 <[email protected]>
1 parent f5579c8 commit 5b6fe3f

28 files changed

+1399
-609
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Editor configuration, see https://editorconfig.org
2+
# Modify it in case
3+
24
root = true
35

46
[*]

.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
PORT=8080
22
MAIN_ACC=0xB37ECC72B98d7004c284fDa84315EaC16903Bda3
3-
FLEEK_API_KEY=APtmIrXXBNrEAKGdD/C/V7LFBU+Q06s+qGUAHczm00M=
3+
FLEEK_API_KEY=APtmIrXXBNrEAKGdD/C/V7LFBU+Q06s+qGUAHczm00M=
4+
SANITY_TOKEN=skBuFTldjifCi42ZehgQ7UaGIjS8dx120g7bbLKxKVA7TIyg8jmTl504LNPF99WZvdnhgZQfnbam1CS7uTiu7WMSdeURL3mILz2kUFv0GxTQt81xmjBCYQPndMC1G9XPL76r0cPyFEJvY0jNgSSu516nedaYLwmCD4hWXIpXp2YksMoy91nv

.fleek.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
// This is the configuration for Fleek service
2+
13
{
24
"build": {
35
"baseDir": ".",
46
"publicDir": "src/public",
57
"command": "npm install && npm run build:prod",
68
"rootDir": ""
79
}
8-
}
10+
}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ public/
66
.env
77
.env.local
88
.env.*.local
9+
deploy.sh
910

1011
# Log files
1112
npm-debug.log*
@@ -20,4 +21,4 @@ pnpm-debug.log*
2021
*.ntvs*
2122
*.njsproj
2223
*.sln
23-
*.sw?
24+
*.sw?

.prettierrc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// These are some code rules
2+
13
{
24
"singleQuote": true,
35
"semi": false,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# :deciduous_tree: DoyCoin
2-
#### A decetralized application where you can plant trees with your Crypto!
2+
#### A decetralized web application where you can plant trees with your Crypto!
33

44
![](https://img.shields.io/github/stars/srteerra/doycoin)![](https://img.shields.io/github/forks/srteerra/doycoin)
55

package-lock.json

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
"@sanity/image-url": "^1.0.1",
5858
"animate.css": "^4.1.1",
5959
"bootstrap-vue": "^2.21.2",
60+
"chart.js": "^3.9.1",
6061
"connect-history-api-fallback": "^1.6.0",
6162
"countup.js": "^2.3.2",
6263
"dotenv": "^16.0.0",

src/app/App.vue

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
<template>
2-
<div>
3-
<TopAnnouncement />
4-
<MainHeader />
5-
<NotificationList />
6-
<router-view />
7-
<MainFooter />
8-
</div>
9-
</template>
10-
11-
<script>
12-
import MainHeader from './components/MainHeader.vue'
13-
import MainFooter from './components/MainFooter.vue'
14-
import TopAnnouncement from './components/TopAnnouncement.vue'
15-
import NotificationList from './components/NotificationList.vue'
16-
import $ from 'jquery'
17-
18-
export default {
19-
name: 'App',
20-
components: {
21-
MainHeader,
22-
MainFooter,
23-
TopAnnouncement,
24-
NotificationList
25-
},
26-
data() {
27-
return {}
28-
},
29-
mounted() {
30-
$('#pre-loader').fadeOut(2000)
31-
}
32-
}
33-
</script>
34-
35-
<style lang="scss"></style>
1+
<template>
2+
<div>
3+
<TopAnnouncement />
4+
<MainHeader />
5+
<NotificationList />
6+
<router-view />
7+
<MainFooter />
8+
</div>
9+
</template>
10+
11+
<script>
12+
import MainHeader from './components/MainHeader.vue'
13+
import MainFooter from './components/MainFooter.vue'
14+
import TopAnnouncement from './components/TopAnnouncement.vue'
15+
import NotificationList from './components/NotificationList.vue'
16+
import $ from 'jquery'
17+
18+
export default {
19+
name: 'App',
20+
components: {
21+
MainHeader,
22+
MainFooter,
23+
TopAnnouncement,
24+
NotificationList
25+
},
26+
data() {
27+
return {}
28+
},
29+
mounted() {
30+
$('#pre-loader').fadeOut(2000)
31+
}
32+
}
33+
</script>
34+
35+
<style lang="scss"></style>

src/app/assets/globals.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ body {
2727
box-sizing: border-box;
2828
}
2929

30-
* {
31-
box-sizing: border-box;
32-
}
33-
3430
a {
3531
color: inherit;
3632
text-decoration: none;

0 commit comments

Comments
 (0)