@@ -11,10 +11,7 @@ const Index = ({
1111 themeColor = "#334865" ,
1212} : HeadProps ) => (
1313 < Head >
14- < title >
15- nteract
16- { pageTitle }
17- </ title >
14+ < title > { `nteract${ pageTitle } ` } </ title >
1815 < meta charSet = "utf-8" />
1916 < meta name = "viewport" content = "initial-scale=1.0, width=device-width" />
2017 < link rel = "canonical" href = "https://nteract.io/" />
@@ -25,80 +22,80 @@ const Index = ({
2522 < link
2623 rel = "apple-touch-icon"
2724 sizes = "57x57"
28- href = "/static/ icons/apple-icon-57x57.png"
25+ href = "/icons/apple-icon-57x57.png"
2926 />
3027 < link
3128 rel = "apple-touch-icon"
3229 sizes = "60x60"
33- href = "/static/ icons/apple-icon-60x60.png"
30+ href = "/icons/apple-icon-60x60.png"
3431 />
3532 < link
3633 rel = "apple-touch-icon"
3734 sizes = "72x72"
38- href = "/static/ icons/apple-icon-72x72.png"
35+ href = "/icons/apple-icon-72x72.png"
3936 />
4037 < link
4138 rel = "apple-touch-icon"
4239 sizes = "76x76"
43- href = "/static/ icons/apple-icon-76x76.png"
40+ href = "/icons/apple-icon-76x76.png"
4441 />
4542 < link
4643 rel = "apple-touch-icon"
4744 sizes = "114x114"
48- href = "/static/ icons/apple-icon-114x114.png"
45+ href = "/icons/apple-icon-114x114.png"
4946 />
5047 < link
5148 rel = "apple-touch-icon"
5249 sizes = "120x120"
53- href = "/static/ icons/apple-icon-120x120.png"
50+ href = "/icons/apple-icon-120x120.png"
5451 />
5552 < link
5653 rel = "apple-touch-icon"
5754 sizes = "144x144"
58- href = "/static/ icons/apple-icon-144x144.png"
55+ href = "/icons/apple-icon-144x144.png"
5956 />
6057 < link
6158 rel = "apple-touch-icon"
6259 sizes = "152x152"
63- href = "/static/ icons/apple-icon-152x152.png"
60+ href = "/icons/apple-icon-152x152.png"
6461 />
6562 < link
6663 rel = "apple-touch-icon"
6764 sizes = "180x180"
68- href = "/static/ icons/apple-icon-180x180.png"
65+ href = "/icons/apple-icon-180x180.png"
6966 />
7067 < link
7168 rel = "icon"
7269 type = "image/png"
7370 sizes = "192x192"
74- href = "/static/ icons/android-icon-192x192.png"
71+ href = "/icons/android-icon-192x192.png"
7572 />
7673 < link
7774 rel = "icon"
7875 type = "image/png"
7976 sizes = "32x32"
80- href = "/static/ icons/favicon-32x32.png"
77+ href = "/icons/favicon-32x32.png"
8178 />
8279 < link
8380 rel = "icon"
8481 type = "image/png"
8582 sizes = "96x96"
86- href = "/static/ icons/favicon-96x96.png"
83+ href = "/icons/favicon-96x96.png"
8784 />
8885 < link
8986 rel = "icon"
9087 type = "image/png"
9188 sizes = "16x16"
92- href = "/static/ icons/favicon-16x16.png"
89+ href = "/icons/favicon-16x16.png"
9390 />
94- < link rel = "manifest" href = "/static/ icons/manifest.json" />
91+ < link rel = "manifest" href = "/icons/manifest.json" />
9592 < meta name = "msapplication-TileColor" content = "#334865" />
9693 < meta
9794 name = "msapplication-TileImage"
98- content = "/static/ icons/ms-icon-144x144.png"
95+ content = "/icons/ms-icon-144x144.png"
9996 />
10097 < meta name = "theme-color" content = "#334865" />
101- < link rel = "shortcut icon" href = "/static/ icons/favicon.ico" />
98+ < link rel = "shortcut icon" href = "/icons/favicon.ico" />
10299
103100 < link rel = "preconnect" href = "https://nteract.io/" />
104101 < link rel = "prefetch" href = "https://nteract.io/" />
@@ -121,7 +118,7 @@ const Index = ({
121118 property = "og:title"
122119 content = "Take your computing experience to the next level."
123120 />
124- < meta property = "og:image" content = "/static/ opengraph.png" />
121+ < meta property = "og:image" content = "/opengraph.png" />
125122 < meta
126123 property = "og:description"
127124 content = "nteract is a desktop application that allows you to develop rich documents that contain prose, executable code, and images."
@@ -140,7 +137,7 @@ const Index = ({
140137 name = "twitter:description"
141138 content = "nteract is a desktop application that allows you to develop rich documents that contain prose, executable code, and images."
142139 />
143- < meta name = "twitter:image" content = "/static/ opengraph.png" />
140+ < meta name = "twitter:image" content = "/opengraph.png" />
144141
145142 < meta name = "theme-color" content = { themeColor } />
146143 </ Head >
0 commit comments