-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoops.html
More file actions
61 lines (51 loc) · 2.06 KB
/
Copy pathoops.html
File metadata and controls
61 lines (51 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oops | Liwei Ji</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="about.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8WMNR1T1KL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-8WMNR1T1KL');
</script>
<body class="dark-mode">
<script>
if (localStorage.getItem('colorMode') === 'light') {
document.body.classList.replace('dark-mode', 'light-mode');
}
</script>
<a href="https://liwei-ji.github.io/" class="back-button" aria-label="Go back">
<i class="fas fa-xmark"></i>
</a>
<div class="about-wrapper">
<section class="about-hero">
<h1 class="about-name">Oops.</h1>
<p class="about-tagline">This page is temporarily unavailable.</p>
</section>
<section class="about-bio">
<div class="about-bio-text">
<p class="values-intro">March 7, 2025</p>
<p>Due to unforeseen circumstances, I have temporarily closed the portfolio. I sincerely apologize for any
inconvenience this may cause. For more details and updates, please feel free to visit my website.</p>
<div style="display: flex; gap: 24px; align-items: center; margin-top: 24px;">
<a href="https://liwei-ji.github.io/" class="behind-link">Back to Homepage <span
class="behind-arrow">→</span></a>
<a href="https://liwei-ji.github.io/relaunch/" class="behind-link">Read the Story <span
class="behind-arrow">→</span></a>
</div>
</div>
<div class="about-photo">
<img src="https://images.unsplash.com/photo-1533374206871-33b8f07c216c?q=80&w=812&auto=format&fit=crop"
alt="Oops">
</div>
</section>
</div>
</body>
</html>