-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.77 KB
/
index.html
File metadata and controls
40 lines (33 loc) · 1.77 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<meta name="description" content="CodeCopilot - AI-powered code analysis and optimization for your web projects. Get detailed insights, security checks, and improvement suggestions." />
<meta name="keywords" content="code analysis, web development, AI, security scanning, project optimization, React, Node.js" />
<meta name="author" content="CodeCopilot" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="CodeCopilot - AI-Powered Code Analysis" />
<meta property="og:description" content="Analyze and optimize your web projects with AI-powered insights and security checks." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/logo.svg" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="CodeCopilot - AI-Powered Code Analysis" />
<meta name="twitter:description" content="Analyze and optimize your web projects with AI-powered insights and security checks." />
<meta name="twitter:image" content="/logo.svg" />
<!-- Theme Color for Mobile Browsers -->
<meta name="theme-color" content="#3B82F6" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Preload Critical Resources -->
<link rel="preload" href="/src/main.jsx" as="script" />
<title>CodeCopilot - AI-Powered Code Analysis & Optimization</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>