-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (57 loc) · 3.64 KB
/
index.html
File metadata and controls
67 lines (57 loc) · 3.64 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
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><!--title-outlet--></title>
<!-- Primary meta tags -->
<meta name="title" content="<!--title-outlet-->" />
<meta name="description" content="<!--description-outlet-->" />
<meta name="keywords" content="developer, web, design, designer, programmer, freelance, portfolio" />
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Max Caplan" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.maxcaplan.com/" />
<meta property="og:title" content="<!--title-outlet-->" />
<meta property="og:description" content="<!--description-outlet-->" />
<meta property="og:image" content="https://www.maxcaplan.com/assets/images/social.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.maxcaplan.com/" />
<meta property="twitter:title" content="<!--title-outlet-->" />
<meta property="twitter:description" content="<!--description-outlet-->" />
<meta property="twitter:image" content="https://www.maxcaplan.com/assets/images/social.png" />
<!-- Icons -->
<link rel="icon" tpye="image/svg+xml" sizes="32x32" href="/assets/favicons/favicon.svg" />
<link rel="icon" tpye="image/svg+xml" sizes="16x16" href="/assets/favicons/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png" />
<link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg" color="#b692c8" />
<link rel="shortcut icon" href="/assets/favicons/favicon.ico" />
<link rel="manifest" href="/assets/favicons/site.webmanifest" />
<meta name="msapplication-TileColor" content="#603cba" />
<meta name="msapplication-config" content="/assets/favicons/browserconfig.xml" />
<meta name="theme-color" content="#121212" />
<!-- Fonts -->
<link rel="preload" href="assets/fonts/JetBrainsMono/JetBrainsMono-Regular.woff2" as="font" crossorigin />
<link href="assets/fonts/JetBrainsMono/JetBrainsMono-Italic.woff2" as="font" crossorigin />
<link rel="preload" href="assets/fonts/JetBrainsMono/JetBrainsMono-Bold.woff2" as="font" crossorigin />
<link href="assets/fonts/JetBrainsMono/JetBrainsMono-BoldItalic.woff2" as="font" crossorigin />
<link rel="preload" href="assets/fonts/JetBrainsMono/JetBrainsMono-ExtraBold.woff2" as="font" crossorigin />
<link href="assets/fonts/JetBrainsMono/JetBrainsMono-ExtraBoldItalic.woff2" as="font" crossorigin />
<link href="assets/fonts/JetBrainsMono/JetBrainsMono-Thin.woff2" as="font" crossorigin />
<link href="assets/fonts/JetBrainsMono/JetBrainsMono-ThinItalic.woff2" as="font" crossorigin />
<link rel="preload" href="assets/fonts/Comic_Neue/ComicNeue-Bold.ttf" as="font" crossorigin />
<link rel="preload" href="assets/fonts/Lobster/Lobster-Regular.ttf" as="font" crossorigin />
<link rel="preload" href="assets/fonts/Merriweather/Merriweather-Black.ttf" as="font" crossorigin />
<link rel="preload" href="assets/fonts/VT323/VT323-Regular.ttf" as="font" crossorigin />
<link rel="preload" href="assets/fonts/Indie_Flower/IndieFlower-Regular.ttf" as="font" crossorigin />
</head>
<body class="bg-brand-gray-900">
<div id="app"><!--ssr-outlet--></div>
<script type="module" src="/src/entry-client.tsx"></script>
</body>
</html>