Skip to content

Commit

Permalink
docs(nuxtjs): adding Guillermo testimonial
Browse files Browse the repository at this point in the history
  • Loading branch information
atinux committed Jun 11, 2021
1 parent 49b586d commit 9e95df6
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
25 changes: 24 additions & 1 deletion nuxtjs.org/components/HomeCommunity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,19 @@
<ALabel tag="span" class="text-sm">{{ testimonial.job }}</ALabel>
</a>
<a :href="testimonial.jobUrl" target="_blank" rel="noopener sponsored" class="hidden xl:block">
<img :src="`/img/home/community/${testimonial.jobIcon}.svg`" width="28" height="28" />
<img
:src="`/img/home/community/${testimonial.jobIcon}.svg`"
width="28"
height="28"
:class="{ 'light-img': testimonial.jobIconDark }"
/>
<img
v-if="testimonial.jobIconDark"
:src="`/img/home/community/${testimonial.jobIconDark}.svg`"
width="28"
height="28"
class="dark-img"
/>
</a>
</div>
</li>
Expand Down Expand Up @@ -124,6 +136,17 @@ export default defineComponent({
jobIcon: 'chrome',
jobUrl: 'https://www.google.com/chrome/'
},
{
testimonial:
'Nuxt has been an incredible source of innovation and inspiration for developers and framework authors alike. It’s been amazing to see its growth in web projects of all sizes on the web.',
author: 'Guillermo Rauch',
authorIcon: 'guillermo',
authorUrl: 'https://twitter.com/rauchg',
job: 'CEO of Vercel',
jobIcon: 'vercel-light',
jobIconDark: 'vercel-dark',
jobUrl: 'https://vercel.com'
},
{
testimonial:
'Nuxt has a unique approach of combining a great developer experience with reusable, fully integrated features that speed up the development and performance of your next website or application.',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions nuxtjs.org/static/img/home/community/vercel-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions nuxtjs.org/static/img/home/community/vercel-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9e95df6

Please sign in to comment.