-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 2.21 KB
/
Copy pathindex.html
File metadata and controls
49 lines (45 loc) · 2.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<title>Valorant Kill Feed Generator</title>
<meta
name="description"
content="Generate Valorant kill feed banners for your clips — pick agents, weapons or abilities, team colors, headshots and wallbangs, then export as PNG."
/>
<meta
name="keywords"
content="valorant, kill feed, killfeed generator, valorant clips, kill banner, valorant overlay, agent, weapon, headshot, wallbang"
/>
<meta name="author" content="hndr.xyz" />
<meta name="theme-color" content="#16171d" />
<link rel="canonical" href="https://killfeed.hndr.xyz/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Valorant Kill Feed Generator" />
<meta property="og:title" content="Valorant Kill Feed Generator" />
<meta property="og:description" content="Generate Valorant kill feed for your clips." />
<meta property="og:url" content="https://killfeed.hndr.xyz/" />
<meta property="og:image" content="https://killfeed.hndr.xyz/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Valorant Kill Feed Generator" />
<meta name="twitter:description" content="Generate Valorant kill feed for your clips." />
<meta name="twitter:image" content="https://killfeed.hndr.xyz/og.png" />
<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=Archivo:wght@600;700;800&family=Barlow:wght@400;500;600&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>