-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
279 lines (246 loc) · 7.2 KB
/
index.html
File metadata and controls
279 lines (246 loc) · 7.2 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NetFlo - Transform Your Professional Network</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
line-height: 1.6;
color: #333;
}
nav {
background: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
padding: 1rem;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: #2563eb;
}
.nav-buttons {
display: flex;
gap: 1rem;
}
.btn {
padding: 0.5rem 1rem;
border-radius: 4px;
text-decoration: none;
transition: all 0.3s ease;
}
.btn-primary {
background: #2563eb;
color: white;
}
.btn-primary:hover {
background: #1d4ed8;
}
.btn-secondary {
color: #2563eb;
}
.hero {
background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
padding: 8rem 2rem 4rem;
text-align: center;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #1e293b;
}
.hero p {
font-size: 1.2rem;
color: #64748b;
max-width: 600px;
margin: 0 auto 2rem;
}
.features {
padding: 4rem 2rem;
background: white;
}
.features-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
text-align: center;
padding: 2rem;
border-radius: 8px;
background: #f8fafc;
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-icon {
width: 64px;
height: 64px;
background: #bfdbfe;
border-radius: 50%;
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
color: #2563eb;
font-size: 1.5rem;
}
.cta {
background: #2563eb;
color: white;
padding: 4rem 2rem;
text-align: center;
}
.cta h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
}
.cta .btn {
background: white;
color: #2563eb;
padding: 1rem 2rem;
font-weight: bold;
display: inline-block;
margin-top: 1rem;
}
footer {
background: #1e293b;
color: white;
padding: 4rem 2rem;
}
.footer-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.footer-col h3 {
color: white;
margin-bottom: 1rem;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 0.5rem;
color: #94a3b8;
}
.copyright {
text-align: center;
padding-top: 2rem;
margin-top: 2rem;
border-top: 1px solid #334155;
color: #94a3b8;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.features-grid {
grid-template-columns: 1fr;
}
.nav-buttons {
display: none;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<div class="logo">NetFlo</div>
<div class="nav-buttons">
<a href="#" class="btn btn-secondary">Login</a>
<a href="#" class="btn btn-primary">Get Started</a>
</div>
</div>
</nav>
<section class="hero">
<h1>Transform Your Professional Network<br>into Strategic Intelligence</h1>
<p>Unlock the hidden value of your LinkedIn connections with powerful analytics and visualization tools.</p>
<a href="#" class="btn btn-primary">Start Free Trial</a>
</section>
<section class="features">
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3>Network Visualization</h3>
<p>See your professional network come to life with interactive visualizations and discover hidden patterns.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📈</div>
<h3>Smart Analytics</h3>
<p>Understand your network's composition and track engagement levels with powerful analytics tools.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3>Strategic Insights</h3>
<p>Identify valuable opportunities and get personalized recommendations for network growth.</p>
</div>
</div>
</section>
<section class="cta">
<h2>Ready to Transform Your Network?</h2>
<p>Join thousands of professionals using NetFlo to unlock their network's potential.</p>
<a href="#" class="btn">Get Started Now</a>
</section>
<footer>
<div class="footer-grid">
<div class="footer-col">
<h3>NetFlo</h3>
<p>Transform your professional network into actionable insights.</p>
</div>
<div class="footer-col">
<h3>Product</h3>
<ul>
<li>Features</li>
<li>Pricing</li>
<li>Enterprise</li>
<li>Security</li>
</ul>
</div>
<div class="footer-col">
<h3>Company</h3>
<ul>
<li>About</li>
<li>Blog</li>
<li>Careers</li>
<li>Contact</li>
</ul>
</div>
<div class="footer-col">
<h3>Legal</h3>
<ul>
<li>Privacy</li>
<li>Terms</li>
<li>Security</li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2024 NetFlo. All rights reserved.</p>
</div>
</footer>
</body>
</html>