forked from k8sgpt-ai/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 3 KB
/
Copy pathindex.html
File metadata and controls
62 lines (58 loc) · 3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="48x48" href="/favicons/favicon-48x48.png" />
<link rel="icon" type="image/png" sizes="64x64" href="/favicons/favicon-64x64.png" />
<link rel="icon" type="image/png" sizes="128x128" href="/favicons/favicon-128x128.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/favicons/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#3b82f6" />
<title>K8sGPT - Giving Kubernetes Superpowers to Everyone</title>
<!-- Preload critical assets -->
<link rel="preload" href="/images/k8sgpt-icon.svg" as="image" type="image/svg+xml" />
<link rel="preload" href="/images/k8sgpt-logo.png" as="image" type="image/png" />
<!-- Mailchimp -->
<link href="//cdn-images.mailchimp.com/embedcode/classic-061523.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js"></script>
<script type="text/javascript">
(function($) {
window.fnames = new Array();
window.ftypes = new Array();
fnames[0]='EMAIL';
ftypes[0]='email';
fnames[1]='FNAME';
ftypes[1]='text';
fnames[2]='LNAME';
ftypes[2]='text';
fnames[3]='ADDRESS';
ftypes[3]='address';
fnames[4]='PHONE';
ftypes[4]='phone';
fnames[5]='BIRTHDAY';
ftypes[5]='birthday';
}(jQuery));
var $mcj = jQuery.noConflict(true);
</script>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://k8sgpt.ai/" />
<meta property="og:title" content="K8sGPT - Giving Kubernetes Superpowers to Everyone" />
<meta property="og:description" content="K8sGPT is an AI-powered tool that helps diagnose and fix Kubernetes issues with intelligent insights and automated troubleshooting." />
<meta property="og:image" content="https://k8sgpt.ai/images/k8sgpt-logo.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://k8sgpt.ai/" />
<meta property="twitter:title" content="K8sGPT - Giving Kubernetes Superpowers to Everyone" />
<meta property="twitter:description" content="K8sGPT is an AI-powered tool that helps diagnose and fix Kubernetes issues with intelligent insights and automated troubleshooting." />
<meta property="twitter:image" content="https://k8sgpt.ai/images/k8sgpt-logo.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>