-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 2.62 KB
/
Copy pathindex.html
File metadata and controls
50 lines (47 loc) · 2.62 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Empire Atlas — an interactive 3D museum of historical homes across eight civilizations." />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Link preview card.
NOTE: og:image and og:url must be ABSOLUTE urls. Most crawlers resolve
a relative path against the page, but not all — swap in the real
origin (e.g. https://empire-atlas.example.com/og-cover.jpg) once the
site has a domain. -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Empire Atlas" />
<meta property="og:title" content="Empire Atlas" />
<meta
property="og:description"
content="Explore how civilizations lived. Eight historical homes in interactive 3D — turn each dwelling, read its architecture, and see how a household worked."
/>
<meta property="og:image" content="/og-cover.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="An illustrated cutaway of a Roman domus around its colonnaded garden courtyard, set on aged parchment with architectural sketches, beside the words Empire Atlas." />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Empire Atlas" />
<meta
name="twitter:description"
content="Explore how civilizations lived. Eight historical homes in interactive 3D — turn each dwelling, read its architecture, and see how a household worked."
/>
<meta name="twitter:image" content="/og-cover.jpg" />
<meta name="twitter:image:alt" content="An illustrated cutaway of a Roman domus around its colonnaded garden courtyard, set on aged parchment with architectural sketches, beside the words Empire Atlas." />
<meta name="theme-color" content="#f8f3ec" />
<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=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:ital,wght@0,400;0,500;0,600;1,400&display=swap"
rel="stylesheet"
/>
<title>Empire Atlas</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>