-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
90 lines (90 loc) · 2.98 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<template>
<div class="text-center mx-auto max-w-3xl px-4">
<h1 class="font-bold text-4xl mt-20">
<a href="https://github.com/ted-mundy/">
ted mundy
</a>
</h1>
<h4 class="italic text-2xl">
software engineer
</h4>
<p class="mt-2 font-bold">
you can send me an email <a href="mailto:[email protected]">here,</a> or find me on
<a href="https://github.com/ted-mundy/">
github.
</a>
</p>
<p class="mt-6">
software engineer with a passion for building & scaling web applications. currently @ <a href="https://pagesuite.com">pagesuite.</a>
</p>
<hr class="mt-8" />
<h1 class="text-xl mt-8 font-bold text-left">
projects
</h1>
<ul class="text-left w-full mx-auto px-12 mt-4">
<li class="mt-2">
<a href="https://github.com/ted-mundy/messaging-app">
<code>messaging-app</code>
</a>:
open source messaging app with rust, react and go
</li>
<li class="mt-2">
<a href="https://cliphog.com">
<code>cliphog</code>
</a>:
video creation platform for creators (closed source)
</li>
<li class="mt-2">
<a href="https://portal.wetradetech.com">
<code>WeTradeTech</code>
</a>:
online portal for clients to manage bookings. (closed source, for employer)
</li>
<li class="mt-2">
<a href="https://jobdip.com/app">
<code>jobdip</code>
</a>:
application for freelancers to find jobs for their schedule. (closed source, for employer)
</li>
<li class="mt-2">
<a href="https://leads.bizooga.co.uk">
<code>bizooga</code>
</a>:
lead generation platform for businesses, among others (closed source, for employer)
</li>
</ul>
<hr class="mt-8" />
<h1 class="text-xl mt-8 font-bold text-left">
experience
</h1>
<ul class="text-left w-full mx-auto px-12 mt-4">
<li class="mt-2">
<h3 class="font-bold">
junior full-stack engineer @ <a href="https://pagesuite.com">pagesuite</a>
<span class="italic">
(july '24 - present)
</span>
</h3>
recently joined pagesuite on the portal team. looking forward to working on some exciting projects.
</li>
<li class="mt-2">
<h3 class="font-bold">
software engineer @ <a href="https://acris.co.uk">acris</a>
<span class="italic">
(feb '24 - june '24')
</span>
</h3>
finished apprenticeship and worked as a qualified software engineer on 2 flagship projects.
</li>
<li class="mt-2">
<h3 class="font-bold">
apprentice software engineer @ <a href="https://acris.co.uk">acris</a>
<span class="italic">
(2022 - 2024)
</span>
</h3>
left school and went straight into an apprenticeship at acris and worked on ~3 projects.
</li>
</ul>
</div>
</template>