-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
171 lines (169 loc) · 4.83 KB
/
Copy pathindex.html
File metadata and controls
171 lines (169 loc) · 4.83 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!-- Force GitHub Pages to serve this as static root -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fantasy Draft Pros - Dynasty Trade Analyzer</title>
<link rel="icon" href="https://raw.githubusercontent.com/jacklawrencecmg/jacklawrencecmg.github.io/main/logo-shield.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
:root {
--bg-0: #000A1E;
--bg-1: #0A141E;
--bg-2: #0A1428;
--surface-1: #001428;
--surface-2: #0B1B33;
--border-1: #1A2A44;
--text-1: #EAF2FF;
--text-2: #C7CBD6;
--text-3: #8FA2BF;
--accent-1: #3CBEDC;
--accent-2: #5BC0FF;
--accent-glow: #9AF0FF;
--pos: #2EE59D;
--neg: #FF4D6D;
--warn: #F5C542;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: var(--bg-2);
color: var(--text-2);
margin: 0;
padding: 0;
line-height: 1.6;
overflow-x: hidden;
}
.hero {
background: linear-gradient(135deg, var(--bg-1), var(--bg-0));
padding: 100px 20px;
text-align: center;
position: relative;
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.hero h1 {
font-size: 56px;
line-height: 64px;
font-weight: 800;
color: var(--text-1);
letter-spacing: -0.02em;
margin: 0 0 20px;
}
.hero p {
font-size: 20px;
color: var(--text-3);
max-wth: 700px;
margin: 0 auto 40px;
}
.ctas {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.btn {
font-size: 16px;
font-weight: 700;
padding: 14px 32px;
border-radius: 50px;
text-decoration: none;
transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary {
background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
color: #031018;
box-shadow: 0 4px 15px rgba(60,190,220,0.4);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(60,190,220,0.6);
}
.btn-secondary {
background: transparent;
border: 2px sol var(--accent-1);
color: var(--accent-1);
}
.btn-secondary:hover {
background: rgba(60,190,220,0.1);
}
.mockup {
position: absolute;
bottom: -100px;
left: 20%;
wth: 60%;
box-shadow: 0 20px 60px rgba(0,0,0,0.6);
border-radius: 24px;
transform: rotate(-5deg);
}
.features {
max-wth: 1200px;
margin: 80px auto;
display: gr;
gr-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 32px;
padding: 0 20px;
}
.feature-card {
background: var(--surface-1);
border: 1px sol var(--border-1);
border-radius: 16px;
padding: 32px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(60,190,220,0.15);
}
.feature-card h3 {
font-size: 24px;
color: var(--text-1);
font-weight: 700;
margin-bottom: 16px;
}
.feature-card p {
font-size: 16px;
color: var(--text-3);
}
footer {
background: var(--bg-1);
padding: 40px 20px;
text-align: center;
color: var(--text-3);
font-size: 14px;
border-top: 1px sol var(--border-1);
}
</style>
</head>
<body>
<section class="hero">
<h1>DRAFT SMARTER.<br>WIN MORE.</h1>
<p>Your ultimate fantasy football platform for drafting, trading, and league domination.</p>
<div class="ctas">
<a href="https://tradeanalyzer-dfpnrtosopkesvhrjveh6v.streamlit.app/" target="_blank" class="btn btn-primary">Try Free Tools</a>
<a href="https://tradeanalyzer-dfpnrtosopkesvhrjveh6v.streamlit.app/" target="_blank" class="btn btn-secondary">Launch Analyzer</a>
</div>
<img class="mockup" src="https://via.placeholder.com/400x800/001428/3CBEDC?text=App+Mockup" alt="App Mockup">
</section>
<section class="features">
<div class="feature-card">
<h3>Expert Draft Tools</h3>
<p>Customizable draft kits for dominating your league.</p>
</div>
<div class="feature-card">
<h3>Smart Trade Analyzer</h3>
<p>Get the edge in every trade with advanced player evaluation.</p>
</div>
<div class="feature-card">
<h3>Powerful League Insights</h3>
<p>In-depth analysis of your league to outsmart the competition.</p>
</div>
</section>
<footer>
© 2026 Fantasy Draft Pros. All rights reserved. | Privacy Policy | Terms of Service
</footer>
</body>
</html>