chore: updated icon styles a2401755
Steve · 2026-02-02 10:47 2 file(s) · +12 −4
docs/docs/public/icon-dark.png +0 −0

Binary file — no preview.

packages/cli/src/commands/login.ts +12 −4
228 228
					res.writeHead(200, { "Content-Type": "text/html" });
229 229
					res.end(`
230 230
						<html>
231 -
							<body style="font-family: system-ui; padding: 2rem; text-align: center;">
232 -
								<h1>Authentication Failed</h1>
231 +
							<head>
232 +
								<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap" rel="stylesheet">
233 +
							</head>
234 +
							<body style="background: #1A1A1A; color: #F5F3EF; font-family: 'Josefin Sans', system-ui; padding: 2rem; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; margin: 0;">
235 +
					  <img src="https://sequoia.pub/icon-dark.png" alt="sequoia icon" style="width: 100px; height: 100px;" />
236 +
								<h1 style="font-weight: 400;">Authentication Failed</h1>
233 237
								<p>${params.error_description || params.error}</p>
234 238
								<p>You can close this window.</p>
235 239
							</body>
248 252
				res.writeHead(200, { "Content-Type": "text/html" });
249 253
				res.end(`
250 254
					<html>
251 -
						<body style="font-family: system-ui; padding: 2rem; text-align: center;">
252 -
							<h1>Authentication Successful</h1>
255 +
						<head>
256 +
							<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap" rel="stylesheet">
257 +
						</head>
258 +
						<body style="background: #1A1A1A; color: #F5F3EF; font-family: 'Josefin Sans', system-ui; padding: 2rem; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; margin: 0;">
259 +
						  <img src="https://sequoia.pub/icon-dark.png" alt="sequoia icon" style="width: 100px; height: 100px;" />
260 +
							<h1 style="font-weight: 400;">Authentication Successful</h1>
253 261
							<p>You can close this window and return to the terminal.</p>
254 262
						</body>
255 263
					</html>