djledda.de main
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

77 řádky
4.4 KiB

  1. import { defineComponent } from "vue";
  2. import useHead from "@/useHead.ts";
  3. import DJTooltip from "@/DJTooltip.tsx";
  4. import DJEmail from "@/DJEmail.tsx";
  5. export default defineComponent({
  6. name: "app-root",
  7. setup() {
  8. useHead({ title: "DJ Ledda's Homepage" });
  9. return () => (
  10. <div class="supercontainer">
  11. <div class="shakeable">
  12. <div class="title_name">
  13. <DJTooltip tooltip="I wonder what he's listening to?">
  14. <img src="/home/img/dj.gif" alt="dj legt krasse Mucke auf" class="dude" />
  15. </DJTooltip>
  16. <DJTooltip tooltip="Easily the coolest guy out there.">
  17. <span>DJ Ledda</span>
  18. </DJTooltip>
  19. <DJTooltip tooltip="I once heard this guy played at revs.">
  20. <img src="/home/img/dj.gif" alt="dj laying down some sick beats" class="dude" />
  21. </DJTooltip>
  22. </div>
  23. <div class="main">
  24. <div class="subject">
  25. <div class="resourcelist">
  26. <a href="https://drum-slayer.com">
  27. <DJTooltip class="resource" tooltip="Small app for designing multitrack looped rhythms with local save and multiple files. Originally built using just vanilla TypeScript and CSS, now with Vue.">
  28. Drum Slayer
  29. </DJTooltip>
  30. </a>
  31. <a href="/somaesque">
  32. <DJTooltip class="resource" tooltip="Puzzle solver app for puzzle cubes resembling the original Soma Cube puzzle. Save and edit your own puzzles! Built with Svelte, THREE.js and AssemblyScript.">
  33. Somaesque
  34. </DJTooltip>
  35. </a>
  36. <a href="/generative-energy">
  37. <DJTooltip class="resource" tooltip="Thyroid calculator, German translations, and more...">
  38. Generative Energy - Ray Peat Resources
  39. </DJTooltip>
  40. </a>
  41. <a href="/home/muenchen-auf-englisch.html">
  42. <DJTooltip class="resource" tooltip="
  43. Authentic historically accurate translations of all of Munich's S-Bahn and U-Bahn
  44. stations, as well as the main municipalities, into English. You live in Allach? It's
  45. Axleigh now. Giesing? Nope! Kyesing! This is a WIP.
  46. ">
  47. München auf Englisch - Munich in English
  48. </DJTooltip>
  49. </a>
  50. <a href="/kadi/">
  51. <DJTooltip class="resource" tooltip="Make an account and start saving paper and tracking your Yatzy stats with your
  52. friends! Make your own rulesets, and more. Built with React, express.js, and
  53. MongoDB. Currently inactive.">
  54. K A D I: Online Yatzy Scoresheets
  55. </DJTooltip>
  56. </a>
  57. <a href="http://git.djledda.de/Ledda">
  58. <DJTooltip class="resource" tooltip="Check out what I'm coding!">
  59. My git projects
  60. </DJTooltip>
  61. </a>
  62. <DJEmail>
  63. <DJTooltip class="resource" tooltip="You'll see my address when you click here.">
  64. Click here to get in touch
  65. </DJTooltip>
  66. </DJEmail>
  67. </div>
  68. </div>
  69. </div>
  70. <div id="tooltipCarrier"></div>
  71. </div>
  72. </div>
  73. );
  74. },
  75. });