-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
125 lines (118 loc) · 3.76 KB
/
landing.html
File metadata and controls
125 lines (118 loc) · 3.76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillProof - Ship Your AI Portfolio</title>
<style>
:root {
--primary: #0f172a;
--accent: #3b82f6;
--text: #334155;
--bg: #f8fafc;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text);
margin: 0;
background: var(--bg);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
header {
text-align: center;
padding: 4rem 0;
}
h1 {
font-size: 3.5rem;
color: var(--primary);
line-height: 1.1;
margin-bottom: 1rem;
}
.subtitle {
font-size: 1.5rem;
color: #64748b;
margin-bottom: 2rem;
}
.cta-button {
display: inline-block;
background: var(--accent);
color: white;
padding: 1rem 2rem;
font-size: 1.2rem;
font-weight: bold;
text-decoration: none;
border-radius: 8px;
transition: transform 0.2s;
}
.cta-button:hover {
transform: translateY(-2px);
}
.problem-box {
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
margin: 3rem 0;
}
.steps {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 2rem;
margin-top: 3rem;
}
.step {
background: white;
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid var(--accent);
}
.step h3 { margin-top: 0; }
.price-tag {
text-align: center;
font-size: 2rem;
font-weight: bold;
color: var(--primary);
margin-top: 3rem;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Ship Your AI Portfolio.<br>Land the Next Role.</h1>
<p class="subtitle">Stop watching tutorials. Build a verifiable case study based on <strong>yesterday's</strong> job market data.</p>
<a href="#" class="cta-button">Start Your 48-Hour Sprint</a>
</header>
<div class="problem-box">
<h2>The Truth: Certificates Don't Get You Hired.</h2>
<p>Recruiters ignore "AI Course Completed" badges. They want to see <strong>evidence</strong>.</p>
<p>SkillProof scans 10,000+ live job descriptions to tell you exactly what skills are hot <em>right now</em>, and gives you a specific project to prove you have them.</p>
</div>
<div class="steps">
<div class="step">
<h3>1. The Scan</h3>
<p>We analyze the last 7 days of job posts for your role to find the #1 missing skill.</p>
</div>
<div class="step">
<h3>2. The Sprint</h3>
<p>You get a specific, 48-hour challenge (e.g., "Build an SEO Agent") to solve immediately.</p>
</div>
<div class="step">
<h3>3. The Asset</h3>
<p>We generate a professional PDF Case Study of your work to attach to your resume.</p>
</div>
</div>
<div class="price-tag">
Price: $49 (One-Time Audit & Portfolio Pass)
</div>
<div style="text-align: center; margin-top: 1rem; color: #64748b; font-size: 0.9rem;">
100% Money-Back Guarantee if you don't complete the sprint.
</div>
</div>
</body>
</html>