updated text
This commit is contained in:
@@ -12,6 +12,7 @@ export default {
|
|||||||
{ charset: 'utf-8' },
|
{ charset: 'utf-8' },
|
||||||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
||||||
{ hid: 'description', name: 'description', content: pkg.description },
|
{ hid: 'description', name: 'description', content: pkg.description },
|
||||||
|
{ hid: 'keywords', name: 'keywords', content: 'css, html, php, server, resources, design, gems, nuxt, javascript, tutorials, development, software'},
|
||||||
{ name:'theme-color', content: '#ffffff' },
|
{ name:'theme-color', content: '#ffffff' },
|
||||||
{ name: 'msapplication-TileColor', content: '#da532c' },
|
{ name: 'msapplication-TileColor', content: '#da532c' },
|
||||||
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#5bbad5' },
|
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#5bbad5' },
|
||||||
|
|||||||
@@ -58,6 +58,11 @@ export default {
|
|||||||
desc: 'Take a whirlwind tour of your next favorite language. Community-driven!',
|
desc: 'Take a whirlwind tour of your next favorite language. Community-driven!',
|
||||||
url: 'https://learnxinyminutes.com/'
|
url: 'https://learnxinyminutes.com/'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'The A11Y Checklist',
|
||||||
|
desc: 'This checklist uses the The Web Content Accessibility Guidelines (WCAG) as a reference point. The WCAG is a shared standard for web content accessibility for individuals, organizations, and governments.',
|
||||||
|
url: 'https://a11yproject.com/checklist/'
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,18 +1,30 @@
|
|||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
div
|
.welcome
|
||||||
main
|
main
|
||||||
h1.text-black.font-bold.text-xl.mb-2 What is
|
h1.text-black.font-bold.text-xl.mb-2 What is
|
||||||
span 💎 webgems ?
|
span 💎 webgems ?
|
||||||
p As of now, it's a curated list of resources for developers and designers. If you want to suggest a resource, go ahead and contact me
|
p Webgems is a goto place for devs and designers to find new resources and more. As a beginner it's sometimes not easy to find what you need since you don't know what you should look for.
|
||||||
a(href="https://twitter.com/lostdesign") @lostdesign
|
p Therefore i created this project to have the most common and best resources for beginners and veterans in one place. Kinda like a bookmarks list for devs and designers, containing only the best gems out there.
|
||||||
| or lost#0001 on discord
|
p If you want to add your own gem, go ahead and open a pull request on github (click on that octocat at the top right corner).
|
||||||
|
p By the way, this project lives by getting shared, if you find with worthy please share it with others.
|
||||||
//- a(href="https://discord.gg/Bjgjdrr") my discord server
|
p made with love by
|
||||||
p Please note that this project has just launched some days ago - many of the resources i have in my backlog have not been added yet. I plan on adding more contents first, improve the site and then slap a backend behind it, were you can submit resources and vote on others. It will also be able to manage your own favorite resources or mark some as done.
|
a(href="https://twitter.com/lostdesign") @lostdesign
|
||||||
p Thank you :)
|
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<style lang="scss" scoped>
|
||||||
export default {}
|
.welcome {
|
||||||
</script>
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user