annotate mrjunejune/src/index.html @ 256:30c2196d03d4

[site] Integrate Zenbu themes and components Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Tue, 04 Aug 2026 16:49:01 -0700
parents 40fa2363fee1
children 60a876c4587a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
84
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
1 <!doctype html>
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
2 <html lang="en">
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
3 <head>
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
4 <title> MrJuneJune </title>
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
5 {{//parts/base_head.html}}
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
6 <style>
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
7 .epi-photo {
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
8 display: flex;
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
9 justify-content: center;
92
655ea0b661fd [Seobeo] Added few endpoints for handling files. [Dowa] Added few functions for random number and generating uuids
June Park <parkjune1995@gmail.com>
parents: 91
diff changeset
10 margin-bottom: 10px;
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
11 }
97
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
12
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
13 .epi-photo img {
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
14 max-width: 100%;
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
15 height: auto;
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
16 border-radius: 8px;
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
17 }
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
18
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
19 @media (max-width: 720px) {
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
20 .epi-photo {
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
21 margin-bottom: 1.5em;
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
22 }
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
23
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
24 ul {
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
25 padding-left: 1.5em;
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
26 }
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
27
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
28 li {
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
29 margin-bottom: 0.75em;
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
30 }
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 93
diff changeset
31 }
211
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
32
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
33 #background {
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
34 position: fixed;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
35 top: 0;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
36 left: 0;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
37 width: 100%;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
38 height: 100%;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
39 pointer-events: none;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
40 z-index: 0;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
41 }
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
42
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
43 #game {
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
44 position: fixed;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
45 top: 0;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
46 left: 0;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
47 width: 100%;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
48 height: 100%;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
49 pointer-events: none;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
50 z-index: 1;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
51 cursor: default;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
52 }
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
53
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
54 #game.active {
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
55 pointer-events: auto;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
56 z-index: 100;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
57 }
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
58
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
59 #gameUI {
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
60 position: fixed;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
61 top: 10px;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
62 right: 10px;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
63 pointer-events: auto;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
64 z-index: 101;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
65 cursor: pointer;
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
66 }
256
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
67
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
68 .site-link-grid {
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
69 display: grid;
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
70 grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
71 gap: var(--zen-space-4);
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
72 }
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
73
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
74 .site-link-grid > a {
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
75 color: inherit;
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
76 text-decoration: none;
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
77 }
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
78
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
79 .site-link-grid zen-card,
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
80 .site-link-grid article {
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
81 height: 100%;
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
82 }
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
83
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
84 .site-link-grid p {
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
85 margin: 0;
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
86 color: var(--zen-color-text-muted);
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
87 font-size: 0.9rem;
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
88 }
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
89 </style>
84
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
90 </head>
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
91 <body>
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
92 {{/parts/header.html}}
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
93 <main>
237
97882baf83e7 [mrjunejune] Rewrite homepage introduction
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
94 <p>Hi, I am Juntae&mdash;usually June, and occasionally MrJuneJune because the domain name has committed me to the bit.</p>
84
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
95
237
97882baf83e7 [mrjunejune] Rewrite homepage introduction
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
96 <p>I am a Member of Technical Staff at Microsoft and an engineering leader with over 10 years of experience building products and infrastructure at Microsoft, Meta, Google, and startups. Recently, I have been working on Copilot Tasks, AI execution infrastructure, and SuperApp experiences at the kind of scale where "it worked on my machine" is not a release strategy.</p>
97882baf83e7 [mrjunejune] Rewrite homepage introduction
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
97
239
40fa2363fee1 [mrjunejune] Simplify homepage copy
MrJuneJune <me@mrjunejune.com>
parents: 238
diff changeset
98 <p>Below is my dog, Epi-chan. I also named the frontend repo behind the SuperApp Code and Autopilot tabs after her :P</p>
86
431df06b1a9b Fixed few things.
June Park <parkjune1995@gmail.com>
parents: 84
diff changeset
99
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
100 <div class="epi-photo">
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
101 <img id="currentPhoto" style="opacity: 0; transition: opacity 0.2s;" />
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
102 </div>
86
431df06b1a9b Fixed few things.
June Park <parkjune1995@gmail.com>
parents: 84
diff changeset
103
84
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
104 <h2>Links</h2>
256
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
105 <div class="site-link-grid">
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
106 <a href="https://zenbu.babocoder.com/file/tip">
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
107 <zen-card interactive>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
108 <article><h3>Repository</h3><p>Browse the code behind these experiments.</p></article>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
109 </zen-card>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
110 </a>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
111 <a href="/blog">
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
112 <zen-card interactive>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
113 <article><h3>Blogs</h3><p>Thoughts, experiments, and technical notes.</p></article>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
114 </zen-card>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
115 </a>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
116 <a href="/resume">
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
117 <zen-card interactive>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
118 <article><h3>Resume</h3><p>Professional experience and selected work.</p></article>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
119 </zen-card>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
120 </a>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
121 <a href="/tools">
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
122 <zen-card interactive>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
123 <article><h3>Tools</h3><p>Small things I built for myself.</p></article>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
124 </zen-card>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
125 </a>
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 239
diff changeset
126 </div>
211
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
127 <canvas id="background"></canvas>
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
128 <canvas id="game"></canvas>
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
129 <canvas id="gameUI"></canvas>
84
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
130 </main>
93
be91a73d801a [MrJuneJune] Updated my website.
June Park <parkjune1995@gmail.com>
parents: 92
diff changeset
131 {{/parts/footer.html}}
84
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
132 </body>
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
133 <script>
211
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
134 // Epi image
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
135 let arr = Array.from({ length: 18 }, (_, i) => i+1);
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
136 function setRandomImages() {
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
137 const randomIndex = Math.floor(Math.random() * arr.length);
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
138 const pos = arr[randomIndex];
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
139 currentPhoto.src = `/public/epi-photos/webp/${pos}.webp`;
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
140 currentPhoto.onload = () => {
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
141 currentPhoto.style.opacity = "1";
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
142 };
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
143 setTimeout(() => setRandomImages(), 1000);
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
144 }
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
145 setRandomImages();
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 86
diff changeset
146 </script>
211
a6d8d32a0261 [MrJuneJune] Simple animations for darkmode.
MrJuneJune <me@mrjunejune.com>
parents: 101
diff changeset
147 <script src="/public/dog-game.js"></script>
84
bcc76a156aea Updated to be called src instead of pages.
June Park <parkjune1995@gmail.com>
parents:
diff changeset
148 </html>