forked from Privoce/vocechat-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHead.tsx
84 lines (81 loc) · 3.51 KB
/
Head.tsx
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import React from "react";
import Head from "next/head";
type Props = {};
const Index = (props: Props) => {
return (
<Head>
<title>VoceChat Website</title>
<meta name="description" content="Welcome to vocechat" />
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#527ff1" />
<meta name="description" content="Private Hosted Chat SDK with Bot and Social Channel Features, Easy Integration to Your Site or App" />
<meta name="keywords" content="Private Hosted, Chat SDK, Bot, IM, Integration, API, SDK, Rust" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
{/* Twitter */}
<meta
name="twitter:card"
content="Your Social Media Privately Hosted. As a top alternative to centralized chat services, Voce chat is a superlight Rust powered open-core chat app that prioritizes private hosting."
key="twcard"
/>
<meta name="twitter:creator" content={"privoce1"} key="twhandle" />
{/* Open Graph */}
<meta property='og:type' content='website' />
<meta property="og:url" content={"https://voce.chat"} key="ogurl" />
<meta property="og:image" content={"https://voce.chat/api/og"} key="ogimage" />
<meta property="og:site_name" content={"VoceChat"} key="ogsitename" />
<meta property="og:title" content={"VoceChat"} key="ogtitle" />
<meta property="og:description" content={"Your Social Media Privately Hosted"} key="ogdesc" />
<link
href="/splash/iphone5_splash.png"
media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/iphone6_splash.png"
media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/iphoneplus_splash.png"
media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/iphonex_splash.png"
media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/iphonexr_splash.png"
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/iphonexsmax_splash.png"
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/ipad_splash.png"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/ipadpro1_splash.png"
media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/ipadpro3_splash.png"
media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="/splash/ipadpro2_splash.png"
media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
</Head>
);
};
export default Index;