-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinprogress.html
More file actions
110 lines (90 loc) · 4.82 KB
/
inprogress.html
File metadata and controls
110 lines (90 loc) · 4.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>daisy fernandez-reyes</title>
<link rel="icon" type="image/png" href="assets/contact_assets/daisy-nav-hero.svg" sizes="32x32">
<link rel="stylesheet" href="cleancss.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://use.typekit.net/ldr5vzi.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bungee+Tint&family=Chokokutai&family=Comfortaa:wght@300..700&family=Coral+Pixels&family=Darumadrop+One&family=Dongle&family=Doto:wght@100..900&family=East+Sea+Dokdo&family=Gaegu&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IM+Fell+Double+Pica:ital@0;1&family=Jersey+15&family=Kirang+Haerang&family=Lacquer&family=Lexend+Deca:wght@100..900&family=Playwrite+VN+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik+Dirt&family=Schoolbell&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Special+Elite&family=Syne+Mono&family=Tiny5&family=Yomogi&display=swap');
</style>
<!-- for in and out transition motion -->
<script src="https://cdn.jsdelivr.net/npm/motion@latest/dist/motion.js"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar">
<a href="index.html">
<div class="logo">
<img src="/assets/contact_assets/daisy-nav-hero.svg" alt="logo" class="logo" />
</div>
</a>
<div class="nav-links">
<a href="aboutme.html">about me </a>
<a href="side-projects.html"> side projects </a>
<a href="art.html"> my art</a>
</div>
</nav>
<div class="container">
<h1>
This section is under construction!<br />
</h1>
</div>
<div class="container">
<p style = "text-align: center;">
<br>Feel free to check out project posts on Linkedin in the meantime! </br>Thank you so much for stopping by! </br>
</p>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
document.body.style.opacity = "1"; // Ensure page starts visible
document.querySelectorAll("a").forEach(link => {
link.addEventListener("click", function (event) {
let href = this.getAttribute("href");
// ✅ Ignore links that open in a new tab or external websites
if (this.target === "_blank" || href.startsWith("http")) return;
// ✅ If the link is an internal section (e.g., #about), smooth scroll instead of fading out
if (href.startsWith("#")) {
event.preventDefault();
document.querySelector(href)?.scrollIntoView({ behavior: "smooth" });
return;
}
event.preventDefault(); // Stop default navigation
document.body.style.opacity = "0"; // Fade out
setTimeout(() => {
window.location.href = href; // Navigate after fade-out
}, 500); // Delay matches transition time
});
});
});
document.addEventListener("DOMContentLoaded", function () {
const minime = document.getElementById("minime");
if (minime) {
minime.addEventListener("click", function () {
// Toggle between childhood and current photo
this.src = this.src.includes("minier_me.png")
? "assets/Asset 19.png"
: "assets/minier_me.png";
});
}
});
</script>
</body>
<footer class="minimal-footer">
<div class="footer-left">
<p>crafted with curiosity & creativity. hosted with love on github pages </p>
<p class="footer-update">© 2025 daisyland all rights reserved</p>
<p class="footer-update">Last updated: July 2025</p>
</div>
<div class="footer-right">
<a href="https://github.com/daisyb3ll" target="_blank">github</a>
<a href="https://docs.google.com/document/d/1k9xpl2AOD8KjBLynts9rQQgqLKHwTG_Pfv17IkuoJVs/edit?tab=t.8sxrkt6rhluq"
target="_blank">resume</a>
<a href="https://www.linkedin.com/in/daisyfernandezreyes/" target="_blank">linkedin</a>
<a href="art.html">art</a>
</div>
</footer>
</html>