djledda.de main
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

GEMain.tsx 1.5 KiB

2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
2 mesi fa
1234567891011121314151617181920212223242526272829303132333435363738
  1. import { RouterLink } from "vue-router";
  2. import useHead from "@/useHead.ts";
  3. import DJTooltip from "@/DJTooltip.tsx";
  4. export default {
  5. name: "ge-main",
  6. setup() {
  7. useHead({ title: "Generative Energy" });
  8. return () => (
  9. <>
  10. <header>
  11. <h1>Generative Energy</h1>
  12. </header>
  13. <div class="text-slab">
  14. <p>
  15. This page is dedicated to Dr. Raymond Peat († 2022), who has had a profound impact on my health
  16. and my life in general. Hover over the links below for more detail.
  17. </p>
  18. </div>
  19. <h2>Links</h2>
  20. <div class="text-slab">
  21. <ul>
  22. <li>
  23. <DJTooltip tooltip="Convert to and from grains, set ratios, etc.">
  24. <RouterLink to={{ name: "GECalculator" }}>Thyroid Calculator</RouterLink>
  25. </DJTooltip>
  26. </li>
  27. <li>
  28. <DJTooltip tooltip="A selection of articles by Ray that I have translated in my spare time into German.">
  29. <RouterLink to={{ name: "GEDeutsch" }}>Ray Peat Articles in German</RouterLink>
  30. </DJTooltip>
  31. </li>
  32. </ul>
  33. </div>
  34. </>
  35. );
  36. },
  37. };