-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (55 loc) · 2.78 KB
/
Copy pathindex.html
File metadata and controls
65 lines (55 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Inline script to detect system dark mode preference and apply it immediately -->
<script>
(function () {
const appearance = '{{ $appearance ?? "system" }}';
if (appearance === 'system') {
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (prefersDark) {
document.documentElement.classList.add('dark');
}
}
})();
</script>
<!-- Inline style to set the HTML background color based on our theme in app.css -->
<style>
html {
background-color: oklch(1 0 0);
}
html.dark {
background-color: oklch(0.145 0 0);
}
</style>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="https://dployr.io/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<link rel="preconnect" href="https://fonts.bunny.net" />
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
<title>dployr</title>
<meta name="description" content="Your server is ready the moment you sign up. Deploy Node.js, Python, Go, PHP, Ruby, .NET, Java, and Docker from the CLI, GitHub Actions, or dashboard." />
<meta name="theme-color" content="#000000" />
<meta name="robots" content="noindex, nofollow" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="dployr" />
<meta property="og:title" content="dployr | Ship apps, not infrastructure" />
<meta property="og:description" content="Your server is ready the moment you sign up. Deploy Node.js, Python, Go, PHP, Ruby, .NET, Java, and Docker from the CLI, GitHub Actions, or dashboard." />
<meta property="og:image" content="https://dployr.io/og-dark.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="dployr | Ship apps, not infrastructure" />
<meta property="og:url" content="https://app.dployr.io" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@dployr" />
<meta name="twitter:title" content="dployr | Ship apps, not infrastructure" />
<meta name="twitter:description" content="Your server is ready the moment you sign up. Deploy Node.js, Python, Go, PHP, Ruby, .NET, Java, and Docker from the CLI, GitHub Actions, or dashboard." />
<meta name="twitter:image" content="https://dployr.io/og-dark.png" />
</head>
<body class="font-sans antialiased">
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>