-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (62 loc) · 2.51 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<script>
// @audit-ok https://stackoverflow.com/questions/21147149/flash-of-unstyled-content-fouc-in-firefox-only-is-ff-slow-renderer
let FF_FOUC_FIX;
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<title>Nathan - Creative Coding</title>
<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=Inter:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/shared/globals.css" />
</head>
<body>
<div id="app" class="max-w-2xl w-full mx-auto px-6 mt-20">
<h1 class="mt-4 text-2xl font-semibold">Creative Coding</h1>
<p class="mt-1 text-slate-500">
An exploration of code turned art exhibition made with p5.js and
Three.js
</p>
<article class="mt-4 flex flex-col gap-y-2 gap-x-4 md:flex-row">
<img
class="object-fill h-auto aspect-square w-64 max-w-full bg-slate-100 flex-shrink-0 border-2 border-black"
src="/gallery/galaxy.png"
/>
<div class="flex flex-col flex-1 gap-1">
<h1 class="text-xl font-semibold">Galaxy</h1>
<p class="text-slate-500">
One of my favorite pieces. It takes a while to draw, but it involves
a series of connected nodes that "drag" each other around (drawing a
line between them), resulting in some fascinating swirls.
</p>
<a class="block underline" href="/sketches/galaxy/"
>Visit Artpiece →</a
>
</div>
</article>
<h1 class="text-xl font-semibold mt-4">Other Sketches</h1>
<ul id="sketches" class="mt-1 pl-6 list-disc"></ul>
<footer class="text-center py-8 px-2">
<a
href="https://natmfat.com"
target="_blank"
rel="noreferrer"
class="underline"
>@natmfat</a
>
</footer>
</div>
<script type="module" src="/shared/index.ts"></script>
</body>
</html>