-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlendasat_static_landing_page_index.html
More file actions
286 lines (269 loc) · 14.3 KB
/
lendasat_static_landing_page_index.html
File metadata and controls
286 lines (269 loc) · 14.3 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
280
281
282
283
284
285
286
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Lendasat — Borrow & Lend, Simply</title>
<meta name="description" content="Lendasat: a clean, fast, responsive landing page ready for GitHub Pages. Replace copy and image URLs to match your product." />
<meta property="og:title" content="Lendasat" />
<meta property="og:description" content="Borrow & lend, simply. Static, fast, and SEO-friendly." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://via.placeholder.com/1200x630.png?text=Lendasat+Preview" />
<meta name="theme-color" content="#111" />
<link rel="icon" href="https://via.placeholder.com/32.png" />
<!--
NOTE: You can move all styles below into a separate file `style.css`.
If you do, replace the <style> block with:
<link rel="stylesheet" href="style.css" />
-->
<style>
:root {
--bg: #0b0b0c;
--card: #111114;
--muted: #9aa3af;
--fg: #f2f3f5;
--accent: #6cf3c5;
--accent-2: #7aa4ff;
--maxw: 1120px;
--radius: 16px;
--shadow: 0 10px 30px rgba(0,0,0,.35);
}
@media (prefers-color-scheme: light) {
:root { --bg: #ffffff; --card: #f6f7f9; --fg: #0b0b0c; --muted: #465062; }
body { background-image: radial-gradient(40rem 40rem at 10% -10%, #e9f8ff 0, transparent 60%),
radial-gradient(40rem 40rem at 120% 10%, #f1efff 0, transparent 60%); }
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0; font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
color: var(--fg); background: var(--bg);
background-image: radial-gradient(60rem 60rem at -10% -10%, rgba(108,243,197,.08) 0, transparent 60%),
radial-gradient(60rem 60rem at 120% 10%, rgba(122,164,255,.08) 0, transparent 60%);
}
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
/* Header */
.site-header { position: sticky; top: 0; z-index: 40; backdrop-filter: saturate(180%) blur(6px); background: color-mix(in srgb, var(--bg) 70%, transparent); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 64px; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; letter-spacing: .2px; }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 20px rgba(108,243,197,.6); }
.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-links a { padding: .45rem .8rem; border-radius: 12px; transition: background .2s ease; color: var(--muted); }
.nav-links a:hover { background: rgba(255,255,255,.06); color: var(--fg); }
.cta { display: inline-flex; align-items: center; gap: .5rem; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0b0b0c; padding: .55rem .95rem; border-radius: 12px; font-weight: 700; box-shadow: var(--shadow); }
/* Hero */
.hero { padding: 6rem 0 3rem; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .25rem .6rem; font-size: .85rem; color: var(--muted); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; }
.eyebrow .signal { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
h1 { font-size: clamp(2rem, 6vw, 3.3rem); line-height: 1.1; margin: .75rem 0 1rem; }
.lead { font-size: clamp(1rem, 2.2vw, 1.15rem); color: var(--muted); margin-bottom: 1.6rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.05rem; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); color: var(--fg); background: transparent; }
.btn:hover { background: rgba(255,255,255,.06); }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0b0b0c; border: none; box-shadow: var(--shadow); }
.hero-media { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: var(--card); box-shadow: var(--shadow); }
.hero-media img { display: block; width: 100%; height: auto; }
/* Feature grid */
.section { padding: 4rem 0; }
.section h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 0 0 .75rem; }
.section p.section-lead { color: var(--muted); margin: 0 0 2rem; }
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.card h3 { margin: .2rem 0 .4rem; font-size: 1.05rem; }
.icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; color: #0b0b0c; font-weight: 900; }
/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; counter-reset: step; }
.step { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.25rem; position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -14px; left: -14px; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0b0b0c; display: grid; place-items: center; font-weight: 800; box-shadow: var(--shadow); }
/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.quote { font-size: 0.95rem; color: var(--muted); }
.person { display: flex; align-items: center; gap: .75rem; margin-top: .9rem; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: url('https://via.placeholder.com/72.png?text=%F0%9F%91%A5') center/cover no-repeat; border: 1px solid rgba(255,255,255,.12); }
/* FAQ */
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
details { border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: var(--card); padding: 1rem 1.1rem; }
details + details { margin-top: .5rem; }
summary { cursor: pointer; font-weight: 600; }
/* Footer */
footer { padding: 2rem 0; color: var(--muted); border-top: 1px solid rgba(255,255,255,.08); }
/* Responsive */
@media (max-width: 960px) {
.hero-grid { grid-template-columns: 1fr; }
.features, .steps, .testimonials, .faq { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
.features, .steps, .testimonials, .faq { grid-template-columns: 1fr; }
.nav-links { display: none; }
}
</style>
</head>
<body>
<a href="#main" class="skip" style="position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;">Skip to content</a>
<!-- Header -->
<header class="site-header">
<div class="container nav">
<a href="#" class="brand" aria-label="Lendasat home">
<span class="brand-dot" aria-hidden="true"></span>
<span>Lendasat</span>
</a>
<nav class="nav-links" aria-label="Primary">
<a href="#features">Features</a>
<a href="#how">How it works</a>
<a href="#faq">FAQ</a>
<a class="cta" href="#cta">Get Started</a>
</nav>
</div>
</header>
<!-- Hero -->
<section class="hero" id="main">
<div class="container hero-grid">
<div>
<span class="eyebrow"><span class="signal"></span> Borrow & lend, simply</span>
<h1>Finance that feels <em>frictionless</em>.</h1>
<p class="lead">Replace this copy with your product's value prop. This static page is lightweight, SEO‑friendly, and easy to host on GitHub Pages.</p>
<div class="hero-actions">
<a class="btn primary" href="#cta">Create your account</a>
<a class="btn" href="#features">Explore features</a>
</div>
</div>
<aside class="hero-media" aria-label="Product preview image">
<!-- Replace the src below with your existing remote image URL -->
<img src="https://via.placeholder.com/960x640.png?text=Replace+with+your+remote+image+URL" alt="Product screenshot" />
</aside>
</div>
</section>
<!-- Features -->
<section class="section" id="features">
<div class="container">
<h2>Why Lendasat</h2>
<p class="section-lead">Clean design, fast loads, minimal JS. Swap in your own text and image URLs.</p>
<div class="features">
<article class="card">
<div class="icon">✓</div>
<h3>Fast & Static</h3>
<p>Zero build tools required. Just HTML + CSS. Ideal for GitHub Pages.</p>
</article>
<article class="card">
<div class="icon">⚡</div>
<h3>Remote Images</h3>
<p>Hot‑link existing assets. Every <code><img></code> uses an absolute URL.</p>
</article>
<article class="card">
<div class="icon">🔒</div>
<h3>Accessible</h3>
<p>Semantic markup, good contrast, keyboard‑friendly controls.</p>
</article>
<article class="card">
<div class="icon">📈</div>
<h3>SEO‑ready</h3>
<p>Titles, meta, and OG tags included. Add your own keywords.</p>
</article>
<article class="card">
<div class="icon">🧩</div>
<h3>Composable</h3>
<p>Drop in sections as needed. Keep what you want, delete the rest.</p>
</article>
<article class="card">
<div class="icon">🛠️</div>
<h3>Easy Theming</h3>
<p>Tweak CSS variables for instant brand colors & spacing.</p>
</article>
</div>
</div>
</section>
<!-- How it works -->
<section class="section" id="how">
<div class="container">
<h2>How it works</h2>
<p class="section-lead">Three simple steps to get started.</p>
<div class="steps">
<article class="step">
<h3>1. Replace copy</h3>
<p>Update headlines, paragraphs, and links with your own content.</p>
</article>
<article class="step">
<h3>2. Swap images</h3>
<p>Set each <code>src</code> attribute to an existing remote URL (CDN, S3, etc.).</p>
</article>
<article class="step">
<h3>3. Publish</h3>
<p>Commit to GitHub as <code>index.html</code> and enable GitHub Pages.</p>
</article>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="section" aria-labelledby="testimonials-title">
<div class="container">
<h2 id="testimonials-title">Loved by teams</h2>
<div class="testimonials">
<figure class="card">
<blockquote class="quote">“Lightning‑fast to deploy. The nicest static template we’ve used.”</blockquote>
<figcaption class="person"><span class="avatar" aria-hidden="true"></span> <span>Jordan • Product Lead</span></figcaption>
</figure>
<figure class="card">
<blockquote class="quote">“Clean, modern, and easy to adapt to our brand.”</blockquote>
<figcaption class="person"><span class="avatar" aria-hidden="true"></span> <span>Sam • Designer</span></figcaption>
</figure>
<figure class="card">
<blockquote class="quote">“Perfect for GitHub Pages. No frameworks to wrestle with.”</blockquote>
<figcaption class="person"><span class="avatar" aria-hidden="true"></span> <span>Casey • Engineer</span></figcaption>
</figure>
</div>
</div>
</section>
<!-- FAQ -->
<section class="section" id="faq">
<div class="container">
<h2>FAQ</h2>
<div class="faq">
<details open>
<summary>How do I use my existing remote image URLs?</summary>
<p>Paste your absolute URL (e.g. <code>https://cdn.example.com/hero.png</code>) into the <code>src</code> attributes for each <code><img></code>. Keep them HTTPS for best performance & security.</p>
</details>
<details>
<summary>Can I split CSS into a separate file?</summary>
<p>Yes. Create <code>style.css</code>, move the <code><style></code> content there, and reference it with <code><link rel="stylesheet" href="style.css"></code>.</p>
</details>
<details>
<summary>Will this work on GitHub Pages?</summary>
<p>Absolutely. Commit as <code>index.html</code> (and <code>style.css</code> if you split CSS), then enable Pages in repository settings.</p>
</details>
<details>
<summary>How do I customize colors?</summary>
<p>Edit the CSS variables at the top of the stylesheet: <code>--accent</code>, <code>--accent-2</code>, <code>--bg</code>, <code>--fg</code>, etc.</p>
</details>
</div>
</div>
</section>
<!-- CTA -->
<section class="section" id="cta">
<div class="container card" style="display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap;">
<div>
<h2 style="margin:0 0 .5rem">Ready to launch?</h2>
<p class="section-lead" style="margin:0">Drop this file into a repo and go live in minutes.</p>
</div>
<a class="cta" href="#">Get started</a>
</div>
</section>
<footer>
<div class="container" style="display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap;">
<span>© <span id="y"></span> Lendasat</span>
<div style="display:flex; gap:.8rem; align-items:center;">
<a href="#features">Features</a>
<span aria-hidden>·</span>
<a href="#how">How it works</a>
<span aria-hidden>·</span>
<a href="#faq">FAQ</a>
</div>
</div>
</footer>
<script>
// Set year in footer
document.getElementById('y').textContent = new Date().getFullYear();
</script>
</body>
</html>