24 lines
552 B
Vue
24 lines
552 B
Vue
<template lang="pug">
|
|
div
|
|
main
|
|
h1.text-black.font-bold.text-xl.mb-2 What is
|
|
span.text-teal webgems 💎
|
|
| ?
|
|
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
|
|
a(href="https://twitter.com/lostdesign") @lostdesign
|
|
| or join
|
|
a(href="https://discord.gg/Bjgjdrr") my discord server
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
main {
|
|
height: 100vh;
|
|
}
|
|
</style>
|