About.vue 1.4 KB

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="flex items-center justify-center space-x-4">
  3. <div class="not-prose flex flex-col items-center justify-center">
  4. <img src="https://serversideup.net/wp-content/uploads/2023/08/dan.jpg" alt="Dan Pastori" class="rounded-full w-[150px] h-[150px]">
  5. <div class="w-full flex items-center justify-center mt-5 space-x-5">
  6. <a href="https://twitter.com/danpastori" target="_blank">
  7. <img src="/images/logos/x-logo.svg" class="w-5"/>
  8. </a>
  9. <a href="https://github.com/danpastori" target="_blank">
  10. <img src="/images/logos/github-white.svg" class="w-5"/>
  11. </a>
  12. </div>
  13. </div>
  14. <div class="not-prose flex flex-col items-center justify-center">
  15. <img src="https://serversideup.net/wp-content/uploads/2023/08/jay.jpg" alt="Jay Rogers" class="rounded-full w-[150px] h-[150px]">
  16. <div class="w-full flex items-center justify-center mt-5 space-x-5">
  17. <a href="https://twitter.com/jaydrogers" target="_blank">
  18. <img src="/images/logos/x-logo.svg" class="w-5"/>
  19. </a>
  20. <a href="https://github.com/jaydrogers" target="_blank">
  21. <img src="/images/logos/github-white.svg" class="w-5"/>
  22. </a>
  23. </div>
  24. </div>
  25. </div>
  26. </template>