-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.64 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sortlist Repositioning - Mockups</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; background: #FBFAF9; color: #463F39; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.container { max-width: 560px; padding: 48px 24px; text-align: center; }
h1 { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; color: #0F0D0A; margin-bottom: 8px; }
p { font-size: 15px; color: #7E7367; margin-bottom: 40px; }
.links { display: flex; flex-direction: column; gap: 12px; }
a { display: block; padding: 16px 24px; background: #fff; border: 1px solid #E7DFDA; border-radius: 10px; text-decoration: none; color: #200DF2; font-weight: 500; font-size: 16px; transition: border-color 0.15s; }
a:hover { border-color: #200DF2; }
a span { display: block; font-size: 13px; color: #7E7367; font-weight: 400; margin-top: 4px; }
</style>
</head>
<body>
<div class="container">
<h1>Sortlist Repositioning</h1>
<p>V5 mockups with correct design system</p>
<div class="links">
<a href="homepage.html">Homepage <span>Agency-first sales page + buyer section</span></a>
<a href="providers.html">Providers <span>Agency-facing "Get clients" page</span></a>
<a href="pricing.html">Pricing <span>Single plan, credits, value stack</span></a>
</div>
</div>
</body>
</html>