-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (107 loc) · 3.99 KB
/
index.html
File metadata and controls
121 lines (107 loc) · 3.99 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<!-- Meta de base -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Silvercore - Des services numériques pensés pour votre confidentialité</title>
<!-- SEO -->
<meta
name="description"
content="Silvercore conçoit des services numériques simples, sécurisés et respectueux de la vie privée. Notes, transferts de fichiers chiffrés et outils modernes, hébergés en France."
/>
<meta
name="keywords"
content="Silvercore, services numériques, confidentialité, sécurité, Silvernote, Silvertransfert, chiffrement, transfert de fichiers, notes en ligne, RGPD, données en France"
/>
<meta name="author" content="Silvercore" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://www.silvercore.fr" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- Open Graph / Social -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Silvercore" />
<meta
property="og:title"
content="Silvercore - Des services numériques pensés pour votre confidentialité"
/>
<meta
property="og:description"
content="Notes, transferts de fichiers et outils numériques sécurisés. Chiffrement, hébergement en France et respect total de la vie privée."
/>
<meta property="og:url" content="https://www.silvercore.fr" />
<meta
property="og:image"
content="https://www.silvercore.fr/assets/img/og-banner.png"
/>
<meta
property="og:image:alt"
content="Silvercore - Services numériques sécurisés"
/>
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Silvercore - Services numériques sécurisés"
/>
<meta
name="twitter:description"
content="Des outils simples et sécurisés pour vos notes et transferts de fichiers, conçus pour protéger vos données."
/>
<meta
name="twitter:image"
content="https://www.silvercore.fr/assets/img/og-banner.png"
/>
<!-- UI / Mobile -->
<meta name="theme-color" content="#646cff" />
<!-- JSON-LD -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Silvercore",
"url": "https://www.silvercore.fr",
"logo": "https://www.silvercore.fr/assets/img/og-banner.png",
"description": "Silvercore conçoit des services numériques simples, sécurisés et respectueux de la vie privée. Notes, transferts de fichiers chiffrés et outils modernes, hébergés en France.",
"foundingLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Lyon",
"addressCountry": "FR"
}
},
"areaServed": {
"@type": "Country",
"name": "France"
},
"contactPoint": [
{
"@type": "ContactPoint",
"contactType": "customer support",
"email": "support@silvercore.fr",
"availableLanguage": ["French"]
},
{
"@type": "ContactPoint",
"contactType": "general inquiries",
"email": "contact@silvercore.fr",
"availableLanguage": ["French"]
}
],
"sameAs": [
"https://taap.it/silvercore.discord",
"https://taap.it/silvercore.discord.support",
"https://taap.it/silvercore.insta"
]
}
</script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>