-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
48 lines (38 loc) · 2.31 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/Cauldron.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Title -->
<title>Cauldron - Faceless Video Engine</title>
<!-- Meta Description -->
<meta name="description" content="Cauldron is a powerful video engine designed to help content creators automate their YouTube channels without ever showing their face. Create high-quality videos with ease!" />
<!-- Meta Keywords -->
<meta name="keywords" content="Cauldron, faceless video engine, video automation, YouTube automation, content creation, text-to-speech, educational videos, storytelling" />
<!-- Meta Author -->
<meta name="author" content="Cauldron Team" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Cauldron - Faceless Video Engine" />
<meta property="og:description" content="Cauldron is a powerful video engine designed to help content creators automate their YouTube channels without ever showing their face. Create high-quality videos with ease!" />
<meta property="og:image" content="https://www.cauldron.live/Open-graph.png" />
<meta property="og:url" content="https://www.cauldron.live" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Cauldron - Faceless Video Engine" />
<meta name="twitter:description" content="Cauldron is a powerful video engine designed to help content creators automate their YouTube channels without ever showing their face. Create high-quality videos with ease!" />
<meta name="twitter:image" content="https://www.cauldron.live/Open-graph.png" />
<!-- Preconnect to Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet" />
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>