index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Aneurin Barker Snook</title>
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
  11. </head>
  12. <body>
  13. <main>
  14. <section id="top">
  15. <header>
  16. <h1>Aneurin Barker Snook</h1>
  17. </header>
  18. <p>
  19. Software engineer extraordinaire.
  20. Current availability: <span class="availability">limited</span>
  21. </p>
  22. </section>
  23. <section id="services">
  24. <header>
  25. <h2>Services</h2>
  26. </header>
  27. <p>
  28. I specialise in full-stack software development, and I also offer a vast breadth of skills
  29. and knowledge in many aspects of business and operations.
  30. </p>
  31. <ul>
  32. <li>Software architecture and implementation</li>
  33. <li>Software integrations and API design</li>
  34. <li>Infrastructure, methodology and documentation</li>
  35. <li>Web UI/UX design and implementation</li>
  36. <li>Code review, debugging, and profiling</li>
  37. <li>Security audits</li>
  38. <li>Legacy platform maintenance and migration</li>
  39. <li>Requirements gathering, stakeholder engagement, and R&D</li>
  40. <li>Technical leadership and mentoring</li>
  41. <li>Consulting</li>
  42. </ul>
  43. <p>
  44. I am always open to new challenges. <a href="#contact">Send me a message</a> to let me know what I can help you with.
  45. </p>
  46. </section>
  47. <section id="skills">
  48. <header>
  49. <h2>Skills</h2>
  50. </header>
  51. <p>
  52. Are you looking for expertise in a specific domain? This list provides an overview of pretty much everything I know.
  53. If you have any questions, or something you need isn't on the list, <a href="#contact">get in touch</a> and I'd be happy to talk about it.
  54. </p>
  55. <ul x-data="skills">
  56. <template x-for="skill in skills">
  57. <li>
  58. <span class="name" x-text="skill.name"></span>
  59. <span class="description" x-text="skill.description"></span>
  60. <nav class="tags">
  61. <template x-for="tag in skill.tags">
  62. <a x-text="tag" x-bind:href="`?tag=${tag}#skills`"></a>
  63. </template>
  64. </nav>
  65. </li>
  66. </template>
  67. </ul>
  68. </section>
  69. <section id="pricing">
  70. <header>
  71. <h2>Pricing</h2>
  72. </header>
  73. <p>
  74. I offer two standard rates on a contract or ad-hoc basis:
  75. </p>
  76. <ul>
  77. <li>£300 per day (7.5 hours) in increments of half a day</li>
  78. <li>£45 per hour in increments of one hour</li>
  79. </ul>
  80. <p>
  81. You can choose one of these according to your needs when booking me for work.
  82. I may also be able to offer fixed pricing for a complete project, subject to a discovery phase to define your requirements.
  83. This may be chargeable depending on the time needed. In some cases,
  84. I can also offer an SLA on retainer to ensure my availability to you.
  85. </p>
  86. <p>
  87. If you are a charitable organisation, I would love to work with you and can offer a reduced rate to suit your budgetary
  88. requirements. <a href="#contact">Get in touch</a> to discuss what you need from me.
  89. </p>
  90. </section>
  91. <section id="contact">
  92. <header>
  93. <h2>Contact</h2>
  94. </header>
  95. <p x-data="{ email: 'a@aneur.in' }">
  96. The best way to reach me is by email.
  97. Send a message to <a x-bind:href="`mailto:${email}`" x-text="email"></a> summarising what you're looking for—or just to say hello!
  98. </p>
  99. <p>
  100. You can aso find me on these platforms:
  101. </p>
  102. <ul>
  103. <li>GitHub <a href="https://github.com/annybs/" target="_blank">github.com/annybs</a>
  104. <li>LinkedIn <a href="https://www.linkedin.com/in/aneurinbs/" target="_blank">linkedin.com/in/aneurinbs</a>
  105. </ul>
  106. </section>
  107. </main>
  108. <script type="module" src="/src/main.ts"></script>
  109. </body>
  110. </html>