-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (106 loc) · 3.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DYNATRON</title>
<meta
name="description"
content="Official website. Dynatron compose electronic synthesizer music, inspired by space,
sci-fi movies and books with a touch of 80's atmosphere. Often labelled as synthwave and spacewave."
/>
<meta
name="keywords"
content="dynatron, synthwave, spacewave, retrowave, outrun"
/>
<meta property="og:title" content="Dynatron Official website" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.dynatronsynth.com/" />
<meta
property="og:description"
content="Official website. Dynatron compose electronic synthesizer music, inspired by space,
sci-fi movies and books with a touch of 80's atmosphere. Often labelled as synthwave and spacewave."
/>
<meta
property="og:image"
content="https://www.dynatronsynth.com/ogimage.jpg"
/>
<meta
property="og:image:secure_url"
content="https://www.dynatronsynth.com/ogimage.jpg"
/>
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Screenshot of the website design" />
<link
rel="alternate icon"
href="/favicon.ico"
type="image/png"
sizes="16x16"
/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/favicon.svg" color="#2d3034" />
<meta name="theme-color" content="#2d3034" />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<link
rel="preconnect"
crossorigin="anonymous"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
crossorigin="anonymous"
href="https://fonts.gstatic.com"
/>
<link
rel="stylesheet"
crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Michroma&display=swap"
/>
<style>
html,
body {
margin: 0;
min-height: 100vh;
min-width: 100vw;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
}
html {
background-color: #111111;
}
body {
color: lightgrey;
font-family: "Michroma", "EurostileExt", Arial, Helvetica, sans-serif;
letter-spacing: 0.5px;
font-size: clamp(0.75rem, 0.6591rem + 0.4545vw, 1rem);
}
html:before {
content: " ";
position: absolute;
inset: 0;
background-color: #111111;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-1KX9WBLCQB"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-1KX9WBLCQB");
</script>
</head>
<body>
<main></main>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>