This repository was archived by the owner on Dec 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.47 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.47 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="IDStudios AmpStack"
/>
<meta property="og:title" content="IDStudios AmpStack">
<meta property="og:type" content="website">
<meta property="og:image" content="https://ampstack.aws.idstudios.io/AmpStack-LogoDark.png">
<meta property="og:image:width" content="1000">
<meta property="og:image:height" content="500">
<meta property="og:image:type" content="image/png">
<meta property="og:url" content="https://ampstack.aws.idstudios.io">
<meta property="og:description" content="A completely serverless web application stack">
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<title>IDStudios AmpStack</title>
</head>
<body>
<script>
// AWS Amplify needs this to work. See https://github.com/aws/aws-sdk-js/issues/3673
const isBrowser = () => typeof window !== "undefined";
const isGlobal = () => typeof global !== "undefined";
if (!isGlobal() && isBrowser()) {
var global = window;
}
</script>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>