index.html 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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 class="description">Software engineer extraordinaire</p>
  19. </section>
  20. <section id="services">
  21. <header>
  22. <h2>Services</h2>
  23. </header>
  24. <p>
  25. I specialise in full-stack software development, and I also offer a vast breadth of skills
  26. and knowledge in many aspects of business and operations.
  27. </p>
  28. <ul>
  29. <li>Software architecture and implementation</li>
  30. <li>Software integrations and API design</li>
  31. <li>Infrastructure, methodology and documentation</li>
  32. <li>Web UI/UX design and implementation</li>
  33. <li>Code review, debugging, and profiling</li>
  34. <li>Security audits</li>
  35. <li>Legacy platform maintenance and migration</li>
  36. <li>Requirements gathering, stakeholder engagement, and R&D</li>
  37. <li>Technical leadership and mentoring</li>
  38. <li>Consulting</li>
  39. </ul>
  40. <p>
  41. 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.
  42. </p>
  43. </section>
  44. <section id="skills" x-data="skills">
  45. <header>
  46. <h2>Skills</h2>
  47. </header>
  48. <p>
  49. Are you looking for expertise in a specific domain? This list provides an overview of pretty much everything I know.
  50. 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.
  51. </p>
  52. <nav id="skills-tags" class="tags">
  53. <template x-for="tag in tags" :key="tag">
  54. <a x-bind:class="tagClass(tag)" x-on:click="setCurrentTag" x-text="tag" x-bind:href="`?tag=${tag}`" x-bind:data-tag="tag"></a>
  55. </template>
  56. </nav>
  57. <ul id="skills-list">
  58. <template x-for="skill in visibleSkills">
  59. <li>
  60. <header>
  61. <h3 x-text="skill.name"></h3>
  62. </header>
  63. <p class="description" x-text="skill.description"></p>
  64. <nav class="tags">
  65. <template x-for="tag in skill.tags" :key="tag">
  66. <a x-bind:class="tagClass(tag)" x-on:click="setCurrentTag" x-text="tag" x-bind:href="`?tag=${tag}#skills`" x-bind:data-tag="tag"></a>
  67. </template>
  68. </nav>
  69. </li>
  70. </template>
  71. </ul>
  72. </section>
  73. <section id="pricing">
  74. <header>
  75. <h2>Pricing</h2>
  76. </header>
  77. <p>
  78. I offer two standard rates on a contract or ad-hoc basis:
  79. </p>
  80. <ul>
  81. <li>£300 per day (7.5 hours) in increments of half a day</li>
  82. <li>£45 per hour in increments of one hour</li>
  83. </ul>
  84. <p>
  85. You can choose one of these according to your needs when booking me for work.
  86. I may also be able to offer fixed pricing for a complete project, subject to a discovery phase to define your requirements.
  87. This may be chargeable depending on the time needed. In some cases,
  88. I can also offer an SLA on retainer to ensure my availability to you.
  89. </p>
  90. <p>
  91. If you are a charitable organisation, I would love to work with you and can offer a reduced rate to suit your budgetary
  92. requirements. <a href="#contact">Get in touch</a> to discuss what you need from me.
  93. </p>
  94. </section>
  95. <section id="availability">
  96. <header>
  97. <h2>Availability</h2>
  98. </header>
  99. <p>
  100. I am currently offering <span class="availability">limited availability</span> to work.
  101. </p>
  102. <p>
  103. I have a fully-equipped private office and favour remote working.
  104. I am able to join captioned video calls or discuss your needs by email or instant messaging.
  105. </p>
  106. <p>
  107. if you would like to see me in person, I am based in Nottingham (UK) and willing to travel, within reason, for meetings or hybrid working.
  108. </p>
  109. </section>
  110. <section id="contact">
  111. <header>
  112. <h2>Contact</h2>
  113. </header>
  114. <p x-data="contact">
  115. The best way to reach me is by email.
  116. 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!
  117. I look forward to hearing from you.
  118. </p>
  119. <p>
  120. You can aso find me on these platforms:
  121. </p>
  122. <ul>
  123. <li>GitHub <a href="https://github.com/annybs/" target="_blank">github.com/annybs</a>
  124. <li>LinkedIn <a href="https://www.linkedin.com/in/aneurinbs/" target="_blank">linkedin.com/in/aneurinbs</a>
  125. </ul>
  126. </section>
  127. </main>
  128. <script type="module" src="/src/main.ts"></script>
  129. <div x-data="analytics">
  130. <template x-if="scriptUrl && websiteId">
  131. <script defer x-bind:src="scriptUrl" x-bind:data-website-id="websiteId"></script>
  132. </template>
  133. </div>
  134. </body>
  135. </html>