-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (121 loc) · 3.59 KB
/
index.html
File metadata and controls
128 lines (121 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="#0a0e1a" />
<!-- Primary Meta Tags -->
<title>Preston Arnold - PrestonOS</title>
<meta
name="description"
content="Interactive OS-style portfolio. Developer, designer, and creator based in Northampton."
/>
<meta name="author" content="Preston Arnold" />
<link rel="canonical" href="https://prestonarnold.uk/" />
<!-- Open Graph / Social -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://prestonarnold.uk/" />
<meta property="og:title" content="Preston Arnold - PrestonOS" />
<meta
property="og:description"
content="Interactive OS-style portfolio. Developer, designer, and creator based in Northampton."
/>
<meta property="og:image" content="https://prestonarnold.uk/og-image.jpg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Preston Arnold - PrestonOS" />
<meta
property="twitter:description"
content="Interactive OS-style portfolio. Developer, designer, and creator based in Northampton."
/>
<meta
property="twitter:image"
content="https://prestonarnold.uk/og-image.jpg"
/>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Preston Arnold",
"url": "https://prestonarnold.uk",
"jobTitle": "Developer & Designer",
"description": "Interactive OS-style portfolio showcasing work and projects"
}
</script>
<!-- Icons -->
<link rel="apple-touch-icon" href="/icons/icon-192.png" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/icons/icon-192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/icons/icon-512.png"
/>
<link rel="icon" href="/favicon.ico" />
<!-- Performance & Security -->
<link rel="preconnect" href="https://prestonarnold.uk" />
<link rel="dns-prefetch" href="https://prestonarnold.uk" />
<style>
html {
background: #0a0e1a;
color-scheme: dark;
}
body {
margin: 0;
padding: 0;
background: #0a0e1a;
color: #e2e8f0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
system-ui, sans-serif;
width: 100vw;
height: 100vh;
overflow: hidden;
}
#root {
width: 100%;
height: 100%;
background: #0a0e1a;
}
/* Loading indicator */
#root:empty::after {
content: "";
position: fixed;
top: 50%;
left: 50%;
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
border: 2px solid rgba(99, 102, 241, 0.2);
border-top-color: rgba(99, 102, 241, 0.6);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<main>
<div id="root"></div>
</main>
<script type="module" src="/src/index.ts"></script>
</body>
</html>