-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (125 loc) Β· 5.85 KB
/
Copy pathindex.html
File metadata and controls
148 lines (125 loc) Β· 5.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-eval' 'unsafe-inline';">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/uikit.min.css">
<script src="js/uikit.min.js"></script>
<script src="js/uikit-icons.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
::selection{
background: black;
color: white;
}
a {
color: black;
text-decoration: underline;
transition: ease-in-out, 0.3s;
}
a:hover {
color: white;
padding: 0.5%;
text-decoration: none;
background-color: black;
}
p, a {
font-family: 'Inconsolata', monospace;
}
#preloader {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: #ffffff;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.25rem;
font-family: sans-serif;
z-index: 9999;
opacity: 1;
transition: opacity 0.6s ease; /* fade effect */
}
#preloader.fade-out {
opacity: 0;
pointer-events: none;
}
/* Hide content initially */
#content {
opacity: 0;
transition: opacity 0.8s ease; /* fade in */
}
/* Show content with fade */
#content.fade-in {
opacity: 1;
}
</style>
<title>the saintist</title>
<meta name="description" content="Naufal Zaqie - Front-end Web Developer, Photographer, and Videographer. I design on the web and tell stories through my lens.">
<meta name="keywords" content="Naufal Zaqie, Front-end Web Developer, Photographer, Videographer, Web Design, Storytelling">
<meta name="author" content="Naufal Zaqie">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://saintist.space/">
<meta property="og:title" content="Naufal Zaqie">
<meta property="og:description" content="Naufal Zaqie - Front-end Web Developer, Photographer, and Videographer. I design on the web and tell stories through my lens.">
</head>
<body>
<!-- preload -->
<div id="preloader">
<div id="loading">
<p class="uk-text-emphasis uk-position-center">please wait<span id="dots"></span></p>
</div>
</div>
<!-- main content -->
<div id="content" >
<div class="uk-flex uk-flex-center uk-padding uk-margin-auto uk-margin-large-top" >
<div>
<img src="logo.png" style="max-width: 100px;"><br>
<p style="font-size: medium;" class="uk-text-emphasis"><b>sain</b> is a front-end developer and visual creator working across web design, photography, and videography. <br>With a background spanning interface design, motion editing, and digital storytelling, <b>Sain's</b> practice moves <br>fluidly between code, camera, and canvas. Unbound by a single medium, his work ranges from building interactive <br> experiences and sketching pixels in Figma to framing cityscapes through a lens and crafting cinematic edits.</p>
<p style="font-size: medium;" class="uk-text-emphasis"><b>sain</b> has worked on a range of projects including <a href="https://github.com/sssain/simple-portfolio">simple portfolio</a> and <a href="https://github.com/sssain/ezfetch">ezfetch</a>. Beyond web design and code, he <br>explores visual storytelling through <a href="/f&m/">capturing and recording memories</a>.
</p>
<p style="font-size: medium;" class="uk-text-emphasis">for collaborations, project inquiries, or creative opportunities, <b>sain</b> can be reached through <a href="mailto:naufalizeds@gmail.com">the email.</a></p>
<a href="https://instagram.com/naefol">instagram</a> - <a href="https://www.linkedin.com/in/naufal-zaqie/">linkedin</a> - <a href="https://www.youtube.com/@naufalzaqie">youtube</a> - <a href="https://github.com/sssain">github</a> - <a href="https://blog.saintist.space">blog</a>
<p style="text-align: center; font-size: small;" class="uk-position-relative">@2025 the saintist.</p>
</div>
</div>
<div style="position: fixed; bottom: 0; left: 0; width: 100%; height: 80px; background: linear-gradient(to top, white, transparent); pointer-events: none;"></div>
</div>
<script>
console.log('this website is heavily inspired by xxxxizzy.xyz, izin ya bang rael!');
</script>
<script>
document.addEventListener("DOMContentLoaded", () => {
const dots = document.getElementById("dots");
const preloader = document.getElementById("preloader");
const content = document.getElementById("content");
// Animate dots
let count = 0;
setInterval(() => {
count = (count + 1) % 4;
dots.textContent = ".".repeat(count);
}, 500);
// Minimum preloader time (2s)
const minTime = 2000;
const startTime = Date.now();
window.addEventListener("load", () => {
const elapsed = Date.now() - startTime;
const remaining = Math.max(0, minTime - elapsed);
setTimeout(() => {
preloader.classList.add("fade-out");
// Wait for preloader fade to finish
setTimeout(() => {
preloader.style.display = "none";
content.classList.add("fade-in"); // trigger content fade-in
}, 600); // match preloader transition
}, remaining);
});
});
</script>
</body>
</html>