-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 2.56 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Resume Builder - Professional Edition</title>
<meta name="description" content="Professional AI-powered resume builder with templates and analysis" />
<meta name="keywords" content="resume builder, AI resume, professional resume, resume templates" />
<meta name="author" content="ResumeAI" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<meta name="distribution" content="global" />
<meta name="rating" content="general" />
<meta name="theme-color" content="#2563eb" />
<!-- Open Graph -->
<meta property="og:title" content="AI Resume Builder - Professional Edition" />
<meta property="og:description" content="Create professional resumes with AI-powered analysis and templates" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://resumeai.com" />
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<meta property="og:site_name" content="ResumeAI" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="AI Resume Builder - Professional Edition" />
<meta name="twitter:description" content="Create professional resumes with AI-powered analysis and templates" />
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<!-- Canonical -->
<link rel="canonical" href="https://resumeai.com" />
<!-- Security Headers -->
<!-- CSP should be set via HTTP headers in production -->
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<!-- X-Frame-Options should be set via HTTP headers in production -->
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin">
<meta http-equiv="Permissions-Policy" content="geolocation=(), microphone=(), camera=()">
<!-- Preload critical resources -->
<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@300;400;500;600;700&display=swap" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>