-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (139 loc) · 5.91 KB
/
index.html
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Looplab</title>
<link rel="stylesheet" href="css/style.css?v=2" />
</head>
<body class="min-h-screen flex flex-col bg-white">
<header
role="header"
id="header"
class="lg:container lg:mx-auto mx-4 border-t-6 border-black mt-8 mb-8"
>
<img
src="img/looplab_logo_crop.svg"
alt="Looplab logo"
class="max-w-50 mt-2"
/>
</header>
<main role="main" id="main" class="flex-1 mx-4 lg:mx-auto">
<section
id="presentation"
class="lg:container prose lg:prose-lg prose-neutral mb-8"
>
<h3>Software architecture studio</h3>
<p>
Experienced consulting studio based in Gothenburg, Sweden
that builds
<u>cloud-native systems</u> from the ground up tailored to
your business needs. If you need we also help you build a
productive development team using our extensive network. For
your existing systems, we can engage with you to
<u>rethink, remodel and extend</u> it to fit your business
goals.
</p>
</section>
<section
id="workflow"
class="lg:container prose lg:prose-lg prose-neutral mb-8"
>
<h3>Worflow</h3>
<p>
We work as consultants on both short and long term missions
depending on your needs, always hands on and fully engaged
in the latest
<u>cloud and dev tech</u>. For smaller companies we work
directly with the CEO and leadership team and for larger
companies we work with the CTO, VPs and team leads as
needed.
</p>
</section>
<section
id="reachout"
class="lg:container prose lg:prose-lg prose-neutral mb-12"
>
<h3>Reach out!</h3>
<p>
Contact us today with your needs and ideas. We are happy to
meet up for a coffee - virtually or in the Gothenburg area!
</p>
<p class="text-center text-4xl mt-6">
<a href="mailto:[email protected]">[email protected]</a>
</p>
</section>
<section
id="about"
class="lg:container prose lg:prose-lg prose-neutral mb-12"
>
<h3>About the company</h3>
<img
src="img/max_ekman_bw_sq.jpg"
class="w-40 float-left pt-4 mr-4 mb-0"
/>
<p>
Looplab was founded in 2014 by Max Ekman to provide software
architecture and development services. Max is an expert in
cloud architecture with extensive knowledge in various
compute domains such as distributed, edge, AI and high
performance embedded. 10+ years of expertise in Go, with
Python, Rust and other popular languages readily available
as needed. Has a diverse toolkit for modern software
engineering, such as: cloud systems (Google Cloud
primarily), system and service architecture, databases,
DevOps and CI/CD, AI and ML ops, Kubernetes, Terraform,
React etc.
</p>
</section>
</main>
<footer role="footer" id="footer" class="bg-black text-gray">
<div
id="page-footer"
class="container pt-12 lg:mx-auto grid md:grid-cols-3"
>
<section id="contact" class="mx-4">
<address class="not-italic">
<h5>Max Ekman</h5>
Software Architect, Owner
<br />
<a href="mailto:[email protected]">[email protected]</a>
<br />
<a href="tel:+46708710504">+46 (0)708-710504</a>
</address>
</section>
<section id="social" class="mx-4 mt-6 md:mt-0">
<a href="https://se.linkedin.com/company/looplab-ab"
>linkedin.com/company/looplab-ab</a
>
<br />
<a href="https://se.linkedin.com/in/max-ekman"
>linkedin.com/in/max-ekman</a
>
<br />
<a href="https://github.com/looplab">github.com/looplab</a>
<br />
<a href="https://github.com/maxekman"
>github.com/maxekman</a
>
<br />
</section>
<section id="address" class="mx-4 mt-8 md:mt-0">
<address class="not-italic">
Looplab AB<br />
Slätvarsgatan 18<br />
SE-42679 Västra Frölunda<br />
SWEDEN
</address>
</section>
</div>
<div class="container mx-auto py-12">
<p class="text-center">Copyright © 2025 Looplab AB</p>
<p class="text-center text-sm text-lightBlue">
EU VAT SE556963006301
</p>
</div>
</footer>
</body>
</html>