-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (151 loc) · 6.56 KB
/
index.html
File metadata and controls
159 lines (151 loc) · 6.56 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<title>Miguel Laginha — Staff Software Engineer</title>
<meta
name="description"
content="Miguel Laginha's personal homepage — Staff Software Engineer based in Coimbra, Portugal."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<script>
(function () {
try {
var storedTheme = localStorage.getItem("theme-preference");
var systemTheme = window.matchMedia(
"(prefers-color-scheme: dark)",
).matches
? "dark"
: "light";
document.documentElement.setAttribute(
"data-theme",
storedTheme || systemTheme,
);
} catch (error) {
document.documentElement.setAttribute(
"data-theme",
"light",
);
}
})();
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=IBM+Plex+Mono:wght@400;500&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body class="page-home">
<div id="container" class="site-shell">
<header class="site-masthead" aria-label="Site header">
<div class="masthead-bar">
<div>
<p class="site-title">Miguel Laginha</p>
<p class="site-subtitle">Staff Software Engineer</p>
</div>
<button
class="theme-toggle"
type="button"
aria-label="Toggle color theme"
aria-pressed="false"
>
<span class="theme-toggle__label">Theme</span>
<span class="theme-toggle__value">Auto</span>
</button>
</div>
</header>
<main class="page-layout" id="main-content">
<section class="hero" aria-labelledby="hero-title">
<div class="hero-copy">
<h1 id="hero-title">
Welcome. I'm Miguel Laginha, how can I help you?
</h1>
<p class="hero-lede">
Currently building AI regulatory compliance software
at <a href="https://complear.com/">Complear</a>.
</p>
<section
class="quick-facts"
aria-labelledby="quick-facts-title"
>
<p class="section-label" id="quick-facts-title">
Quick facts
</p>
<ul class="hero-meta">
<li>
<span class="meta-label">Base</span>
<span class="meta-value"
>Coimbra, Portugal</span
>
</li>
<li>
<span class="meta-label">Role</span>
<span class="meta-value"
>Staff Software Engineer</span
>
</li>
</ul>
</section>
</div>
</section>
<section class="content-section" aria-labelledby="oss-title">
<h2 id="oss-title">Open source</h2>
<p>
You can find my open source work, experiments, and
older public artifacts on my GitHub profile.
</p>
<ul class="entry-links">
<li>
<a href="https://github.com/brecke/"
>github.com/brecke</a
>
</li>
</ul>
</section>
<section class="content-section" aria-labelledby="elsewhere-title">
<h2 id="elsewhere-title">Elsewhere</h2>
<ul class="link-list">
<li>
<a href="https://www.x.com/brecke/">X</a>
</li>
<li>
<a href="https://speakerdeck.com/brecke/"
>Speaker Deck</a
>
</li>
<li>
<a href="https://www.goodreads.com/brecke"
>Goodreads</a
>
</li>
</ul>
</section>
<section class="content-section" aria-labelledby="contact-title">
<h2 id="contact-title">Contact</h2>
<p>
LinkedIn is the easiest way to reach me. If you prefer
email, you can also write to
<span class="obfuscated-email"
>me [at] miguellaginha [dot] com</span
>.
</p>
<ul class="entry-links">
<li>
<a href="https://www.linkedin.com/in/brecke/"
>linkedin.com/in/brecke</a
>
</li>
</ul>
</section>
</main>
<footer class="site-footer">
<p>Miguel Laginha — last updated in April 2026.</p>
</footer>
</div>
<script src="js/main.js"></script>
</body>
</html>