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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
|
import BrandGithub from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/brand-github.tsx";
import LemonIcon from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/lemon-2.tsx";
import CheckIcon from "https://deno.land/x/tabler_icons_tsx@0.0.5/tsx/check.tsx";
import IconChevronRight from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/chevron-right.tsx";
import IconAlarm from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/alarm.tsx";
import IconZZZ from "https://deno.land/x/tabler_icons_tsx@0.0.5/tsx/zzz.tsx";
import IconArmchair from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/armchair.tsx";
export const layout = "bare.njk";
export const title = "Alvis - Never get paged again";
export const year = "2023";
export const series = "techaro";
export const Header = ({ active }) => {
const menus = [
{ name: "Home", href: "/" },
{ name: "Blog", href: "/blog/" },
{ name: "Contact", href: "/contact/" },
{ name: "Resume", href: "/resume/" },
{ name: "Talks", href: "/talks/" },
{ name: "VODs", href: "/vods/" },
];
return (
<div className="bg-slate-200 dark:bg-slate-800 text-slate-900 dark:text-slate-100 mb-4 w-full max-w-screen-lg py-6 px-8 flex flex-col md:flex-row gap-4">
<div className="flex items-center flex-1">
<LemonIcon className="inline-block" aria-hidden="true" />
<div className="text-2xl ml-1 font-bold">
Alvis
</div>
</div>
<ul className="flex items-center gap-6">
{menus.map((menu) => (
<li>
<a
href={menu.href}
className={menu.href === active ? " font-bold border-b-2" : ""}
>
{menu.name}
</a>
</li>
))}
</ul>
</div>
);
};
export const Footer = () => {
const menus = [
{
title: "Documentation",
children: [
{ name: "Getting Started", href: "/blog/alvis/" },
{ name: "Guide", href: "/blog/alvis/" },
{ name: "API", href: "/blog/alvis/" },
{ name: "Showcase", href: "/blog/alvis/" },
{ name: "Pricing", href: "/blog/alvis/" },
],
},
{
title: "Community",
children: [
{ name: "Forum", href: "/blog/alvis/" },
{ name: "Discord", href: "/blog/alvis/" },
],
},
];
return (
<div class="bg-slate-200 dark:bg-slate-800 text-slate-900 dark:text-slate-100 mt-4 flex flex-col md:flex-row w-full max-w-screen-lg gap-8 md:gap-16 px-8 py-8 text-sm">
<div class="flex-1">
<div class="flex items-center gap-1">
<LemonIcon class="inline-block" aria-hidden="true" />
<div class="font-bold text-2xl">
Alvis
</div>
</div>
<div class="text-gray-500">
Give ChatGPT root in prod. What could possibly go wrong?
</div>
</div>
{menus.map((item) => (
<div class="mb-4" key={item.title}>
<div class="font-bold">{item.title}</div>
<ul class="mt-2">
{item.children.map((child) => (
<li class="mt-2" key={child.name}>
<a href={child.href}>
{child.name}
</a>
</li>
))}
</ul>
</div>
))}
<div class="text-gray-500 space-y-2">
<div class="text-xs">
Copyright 2023 Xeserv.<br />
All rights reserved.
</div>
<a
href="https://github.com/Xe"
class="inline-block hover:text-black"
aria-label="GitHub"
>
<BrandGithub aria-hidden="true" />
</a>
</div>
</div>
);
};
export const Hero = () => {
return (
<div
class="w-full my-8 py-8 flex px-8 py-10 min-h-[24em] justify-center items-center flex-col gap-8 bg-cover bg-center bg-no-repeat bg-slate-50 rounded-xl text-white"
style="background-image:linear-gradient(rgba(0, 0, 40, 0.8),rgba(0, 0, 40, 0.8)), url('https://cdn.xeiaso.net/file/christine-static/hero/basketball.jpg');"
>
<div class="space-y-4 text-center">
<h1 class="text-3xl inline-block font-bold">Alvis</h1>
<p class="text-xl max-w-lg text-blue-100">
Don't worry about being paged, Alvis will take care of it.
</p>
</div>
<div class="flex flex-col md:flex-row items-center">
<a
href="/blog/alvis/"
class="block mt-4 text-blue-600 visited:text-blue-600 cursor-pointer inline-flex items-center group text-blue-800 bg-white px-8 py-2 rounded-md hover:bg-blue-50 font-bold"
>
Get started{" "}
</a>
<a
href="/blog/alvis/"
class="block mt-4 transition-colors text-blue-400 visited:text-blue-400 cursor-pointer inline-flex items-center group px-4 py-2 hover:text-blue-100"
>
Learn more{" "}
<IconChevronRight
class="inline-block w-5 h-5 transition group-hover:translate-x-0.5"
aria-hidden="true"
/>
</a>
</div>
</div>
);
};
export const Features = () => {
const featureItems = [
{
icon: IconAlarm,
description:
"Automatically respond to production incidents with our industry-leading AI. Alvis will diagnose the problem and fix it.",
},
{
icon: IconZZZ,
description:
"Leave yourself free to sleep, write, work on projects, relax, or spend time with your family. Alvis will take care of it.",
},
{
icon: IconArmchair,
description:
"Get a detailed report for every incident Alvis handles. This helps you understand what went wrong and how to fix it.",
link: "/landing/alvis/P0001/",
},
];
return (
<div class="flex my-8 flex-col md:flex-row gap-8 p-8">
{featureItems.map((item) => {
return (
<div class="flex-1 space-y-2">
<div class="bg-blue-600 inline-block p-3 rounded-xl text-white">
<item.icon class="w-10 h-10" aria-hidden="true" />
</div>
<p class="text-xl">
{item.description}
</p>
{item.link &&
(
<a class="block" href={item.link}>
<p class="text-blue-600 cursor-pointer hover:underline inline-flex items-center group">
Read More{" "}
<IconChevronRight
class="inline-block w-5 h-5 transition group-hover:translate-x-0.5"
aria-hidden="true"
/>
</p>
</a>
)}
</div>
);
})}
</div>
);
};
export const Testimonials = () => {
const testimonials = [
{
name: "James Dornick",
position: "Lead SRE @ WritePulse",
color: "bg-[#9d789b]",
avatar: "https://cdn.xeiaso.net/avatar/d69caff2a9fd74b7069be6ece1a06ac5",
quote:
"Honestly, I wasn't able to spend time with my kid until I set up Alvis. Now family time isn't turned into work time!",
},
{
name: "Samus Rhodes",
position: "SRE @ Worcation",
color: "bg-[#5b5faf]",
avatar: "https://cdn.xeiaso.net/avatar/9108f6d8df326e20a4c1983a910cd952",
quote:
"I was able to get a promotion after setting up Alvis. I can't believe I didn't do it sooner!",
},
{
name: "Maria Robotnik",
position: "SRE @ G.U.N.",
color: "bg-[#d61a9b]",
avatar: "https://cdn.xeiaso.net/avatar/f9f35179d3331f30f92793b724c26cf9",
quote:
"Every time I get paged, I just tell Alvis to take care of it. I don't even have to look at my phone anymore!",
},
];
return (
<section class="py-8 text-neutral-700 dark:text-neutral-300">
<div class="mx-auto text-center md:max-w-xl lg:max-w-3xl">
<h3 class="mb-6 text-3xl font-bold">Testimonials</h3>
<p class="mb-6 pb-2 md:mb-12 md:pb-0">
Don't believe us? Trust the voices of your peers. They obviously know
what they're talking about, don't they?
</p>
</div>
<div class="grid gap-6 text-center md:grid-cols-3">
{testimonials.map((testimonial) => (
<div>
<div className="block rounded-lg bg-white shadow-lg dark:bg-neutral-700 dark:shadow-black/30 h-full">
<div
className={`h-28 overflow-hidden rounded-t-lg ${testimonial.color}`}
>
</div>
<div className="mx-auto mt-12 w-24 overflow-hidden rounded-full border-2 border-white bg-white dark:border-neutral-800
|