-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (64 loc) · 2.89 KB
/
index.html
File metadata and controls
73 lines (64 loc) · 2.89 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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ritchie@singapore:~$ Home</title>
<!-- Preload critical resources -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Fira+Code&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Code&display=swap"></noscript>
<!-- Critical CSS loaded synchronously -->
<link rel="stylesheet" href="./css/styles.css" />
<!-- Non-critical CSS loaded asynchronously -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"></noscript>
<!-- Defer Tailwind to prevent render blocking -->
<script src="./lib/tailwind/tailwind-cdn.js" defer></script>
</head>
<body>
<div class="container">
<div id="menu"></div>
<div class="bash-block">
<div class="bash-line">
<span class="prompt">ritchie@singapore</span>:<span class="command">~</span>$ cat welcome.txt
</div>
<div class="bash-output output-text">
<p>I'm <strong>Ritchie Ng, from Singapore</strong></p>
</br>
<p>I specialize in </p>
<p>>>> building scalable agentic generative AI systems engaging with millions of users and trillions of transaction value</p>
<p>>>> leading generative AI teams globally across engineering and applied research</p>
</div>
</div>
<div class="bash-block">
<div class="bash-line">
<span class="prompt">ritchie@singapore</span>:<span class="command">~</span>$ ls socials
</div>
<div class="bash-output output-text">
<div class="social-links">
<div class="social-link">
<a href="https://github.com/ritchieng" target="_blank" class="link-text">
<i class="fab fa-github"></i> github.com/ritchieng
</a>
</div>
<div class="social-link">
<a href="https://linkedin.com/in/ritchieng" target="_blank" class="link-text">
<i class="fab fa-linkedin"></i> linkedin.com/in/ritchieng
</a>
</div>
<div class="social-link">
<a href="https://scholar.google.com/citations?user=-EJMOpYAAAAJ&hl=en" target="_blank" class="link-text">
<i class="fas fa-graduation-cap"></i> scholar.google.com
</a>
</div>
</div>
</div>
</div>
<div class="bash-line">
<span class="prompt">ritchie@singapore</span>:<span class="command">~</span>$ <span class="cursor">|</span>
</div>
</div>
<script src="./js/menu.js" defer></script>
</body>
</html>