add resource, remove ads

This commit is contained in:
André Weller
2019-05-12 02:25:17 +02:00
parent e2379e5c08
commit 864bae9215
3 changed files with 39 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
nuxt-link(to="/javascript") Javascript
nuxt-link(to="/design") Designs
nuxt-link(to="/servers") Servers
nuxt-link(to="/communities") Communities
nuxt-link(to="/tools") Tools
small And many more to come :)
</template>

View File

@@ -7,8 +7,8 @@ div
p As of now, it's a curated list of resources for developers and designers.
p If you want to suggest a resource, go ahead and contact me&nbsp;
a(href="https://twitter.com/lostdesign") @lostdesign&nbsp;
| or join&nbsp;
a(href="https://discord.gg/Bjgjdrr") my discord server
//- | or join&nbsp;
//- a(href="https://discord.gg/Bjgjdrr") my discord server
</template>

36
pages/tools/index.vue Normal file
View File

@@ -0,0 +1,36 @@
<template lang="pug">
div
h1 Servers
.cards
template(v-for='resource in resources')
Card(:title='resource.title' :desc='resource.desc' :url='resource.url')
</template>
<script>
import Card from '../../components/Card'
export default {
data() {
return {
resources: [
{
title: 'JSON Generator',
desc: 'Random JSON generator for your project - because debugging without data, does not make sense!',
url: 'https://www.json-generator.com'
},
]
}
},
components: {
Card
}
}
</script>
<style lang="scss" scoped>
h1 {
margin-bottom: 2rem;
}
</style>