-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkedin-banner.html
More file actions
185 lines (169 loc) · 3.74 KB
/
linkedin-banner.html
File metadata and controls
185 lines (169 loc) · 3.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NativeSquare LinkedIn Banner</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500&family=Inter:wght@400;500&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #2e3038;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 40px;
}
.banner {
width: 1584px;
height: 396px;
background: #121317;
position: relative;
overflow: hidden;
font-family: 'Inter', system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 80px;
}
/* Grid overlay — same as hero: absolute, right side */
.grid-overlay {
position: absolute;
left: -550px;
top: 0;
width: 1000px;
height: auto;
opacity: 0.35;
pointer-events: none;
}
/* Ambient glows */
.glow-orange {
position: absolute;
left: 50px;
top: -150px;
width: 600px;
height: 500px;
background: radial-gradient(ellipse at center, rgba(254,173,52,0.1), transparent 70%);
filter: blur(80px);
pointer-events: none;
}
.glow-blue {
position: absolute;
right: -100px;
top: 50%;
width: 500px;
height: 500px;
background: radial-gradient(ellipse at center, rgba(26,121,255,0.06), transparent 70%);
filter: blur(100px);
pointer-events: none;
}
/* Left column — text */
.left {
position: relative;
z-index: 10;
max-width: 520px;
flex-shrink: 0;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 28px;
}
.logo img {
width: 28px;
height: 28px;
border-radius: 6px;
}
.logo span {
font-size: 15px;
font-weight: 500;
color: rgba(249,250,251,0.9);
letter-spacing: -0.3px;
}
.headline {
font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
font-weight: 500;
font-size: 56px;
line-height: 1.0;
letter-spacing: -0.04em;
color: #f9fafb;
}
.subtitle {
margin-top: 14px;
font-size: 16px;
font-weight: 400;
line-height: 1.5;
letter-spacing: -0.02em;
color: #abaebb;
}
.url-row {
margin-top: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.url {
font-size: 14px;
font-weight: 500;
letter-spacing: -0.02em;
color: #1a79ff;
}
.dot {
width: 4px;
height: 4px;
border-radius: 50%;
background: #464853;
}
.tagline {
font-size: 13px;
font-weight: 500;
letter-spacing: -0.02em;
color: #5e616e;
}
/* Right column — asset */
.right {
position: relative;
flex-shrink: 0;
}
.hero-asset {
width: 520px;
height: auto;
position: relative;
pointer-events: none;
}
</style>
</head>
<body>
<div class="banner">
<!-- Ambient glows -->
<div class="glow-orange"></div>
<div class="glow-blue"></div>
<!-- Grid overlay -->
<img src="public/hero/grid.webp" class="grid-overlay" alt="">
<!-- Left — 3D asset -->
<div class="right">
<img src="public/hero/hero_asset.webp" class="hero-asset" alt="">
</div>
<!-- Right — text content -->
<div class="left">
<div class="logo">
<img src="public/hero/ns-logo.png" alt="NativeSquare">
<span>NativeSquare</span>
</div>
<div class="headline">
Building AI-Powered<br>HealthTech
</div>
<div class="subtitle">
In-house and as partners. Same vision, same craft.
</div>
<div class="url-row">
<span class="url">nativesquare.fr</span>
<span class="dot"></span>
<span class="tagline">Healthcare Startup Studio</span>
</div>
</div>
</div>
</body>
</html>