-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (52 loc) · 2.95 KB
/
index.html
File metadata and controls
58 lines (52 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#111827" />
<meta name="msapplication-TileColor" content="#111827" />
<title>Motion Extraction - Extract Motion from Videos</title>
<meta name="description" content="Advanced video processing tool that extracts motion from videos using frame offset technique. Upload your video and discover hidden motion patterns." />
<meta name="keywords" content="video processing, motion extraction, frame offset, video analysis, motion detection" />
<meta name="author" content="Motion Extraction" />
<!-- Open Graph -->
<meta property="og:title" content="Motion Extraction - Extract Motion from Videos" />
<meta property="og:description" content="Advanced video processing tool that extracts motion from videos using frame offset technique. Upload your video and discover hidden motion patterns." />
<meta property="og:url" content="https://extract-motion.pages.dev" />
<meta property="og:site_name" content="Motion Extraction" />
<meta property="og:image" content="/og-image.svg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Motion Extraction - Video Processing Tool" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Motion Extraction - Extract Motion from Videos" />
<meta name="twitter:description" content="Advanced video processing tool that extracts motion from videos using frame offset technique." />
<meta name="twitter:image" content="/og-image.svg" />
<!-- Robots -->
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1" />
<!-- Icons -->
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/icon-192.svg" sizes="192x192" />
<link rel="icon" type="image/svg+xml" href="/icon-512.svg" sizes="512x512" />
<link rel="apple-touch-icon" href="/apple-touch-icon.svg" />
<link rel="manifest" href="/manifest.json" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=JetBrains+Mono:wght@100..900&display=swap" rel="stylesheet" />
<style>
:root {
--font-inter: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
</style>
</head>
<body class="antialiased">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>