VeraCrypt.vue 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <NuxtLayout name="guides">
  3. <template #intro>
  4. <div class="max-w-xl">
  5. <h2 class="text-4xl font-extrabold text-gray-100 sm:text-5xl sm:tracking-tight lg:text-6xl">
  6. VeraCrypt
  7. </h2>
  8. <p class="mt-5 text-xl text-indigo-300">
  9. VeraCrypt is a free and open-source utility for on-the-fly encryption <em>(OTFE)</em>.
  10. The software can create a virtual encrypted disk that works just like a regular disk but within a file.
  11. </p>
  12. </div>
  13. </template>
  14. <template #links>
  15. <div class="mt-10 w-full max-w-xs lg:mt-0">
  16. <label for="currency" class="block text-2xl font-medium text-indigo-400">
  17. Recommended Links
  18. </label>
  19. <div class="flex flex-col mt-1.5 pl-3 relative text-indigo-200">
  20. <div>
  21. ↳ <NuxtLink to="/guides/veracrypt" class="hover:underline">
  22. Setup your first container
  23. </NuxtLink>
  24. </div>
  25. <div>
  26. ↳ <NuxtLink>
  27. Nuxt Link #2
  28. </NuxtLink>
  29. </div>
  30. <div>
  31. ↳ <NuxtLink>
  32. Nuxt Link #3
  33. </NuxtLink>
  34. </div>
  35. </div>
  36. </div>
  37. </template>
  38. <!-- Page Section -->
  39. <template #main>
  40. <section class="col-span-3 p-3 h-full bg-gradient-to-r from-gray-50 to-gray-100">
  41. <h3 class="text-2xl font-medium">Official Website</h3>
  42. <a href="https://www.veracrypt.fr/en/Downloads.html" target="_blank" class="text-blue-500 font-medium hover:underline">
  43. https://www.veracrypt.fr/en/Downloads.html</a>
  44. <h3 class="mt-5 text-2xl font-medium">IPFS Repository</h3>
  45. <a href="https://ipfs.io/ipfs/QmSoTesXuTFi55wuHXQoY9Nwm5eVhGoxFxAquMZidLnR43" target="_blank" class="text-blue-500 font-medium hover:underline">
  46. https://ipfs.io/ipfs/QmSoTesXuTFi55wuHXQoY9Nwm5eVhGoxFxAquMZidLnR43</a>
  47. </section>
  48. <h3 class="mt-10 text-2xl font-medium">
  49. Install Dependencies (for Debian 12)
  50. </h3>
  51. <div class="my-5 w-3/4 border-4 border-yellow-300 bg-yellow-100 rounded-xl overflow-hidden">
  52. <textarea rows="1" class="-mb-2 p-5 w-full border-0 bg-yellow-100">apt install libpcsclite1 libccid libusb-1.0-0 pcscd</textarea>
  53. </div>
  54. </template>
  55. </NuxtLayout>
  56. </template>