-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathindex.html
More file actions
985 lines (869 loc) · 49.2 KB
/
index.html
File metadata and controls
985 lines (869 loc) · 49.2 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
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FastTrack for Microsoft 365 Copilot</title>
<meta name="description" content="Open-source tools, agent templates, analytics dashboards, and strategic guidance from Microsoft FastTrack to accelerate your Microsoft 365 Copilot journey." />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctext x='16' y='22' font-size='20' text-anchor='middle'%3E%E2%9A%A1%3C/text%3E%3C/svg%3E" type="image/svg+xml" />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
boxShadow: {
glow: '0 0 0 1px rgba(255,255,255,0.06), 0 24px 80px rgba(59,130,246,0.12)',
},
},
},
};
</script>
<script src="https://unpkg.com/lucide@latest"></script>
<script>
(() => {
try {
const savedTheme = localStorage.getItem('theme');
const prefersLight = window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches;
if (savedTheme === 'light' || (!savedTheme && prefersLight)) {
document.documentElement.classList.add('light');
}
} catch (error) {
// Ignore storage access issues and fall back to dark mode.
}
})();
</script>
<style>
:root {
color-scheme: dark;
--bg: #000000;
--surface: rgba(255, 255, 255, 0.02);
--surface-strong: rgba(255, 255, 255, 0.06);
--border: rgba(255, 255, 255, 0.08);
--border-strong: rgba(255, 255, 255, 0.15);
--text-primary: rgba(255, 255, 255, 0.92);
--text-secondary: rgba(255, 255, 255, 0.55);
--accent-a: rgba(56, 189, 248, 0.22);
--accent-b: rgba(139, 92, 246, 0.2);
}
html.light {
color-scheme: light;
--bg: #fafafa;
--surface: rgba(0, 0, 0, 0.025);
--surface-strong: rgba(0, 0, 0, 0.05);
--border: rgba(0, 0, 0, 0.08);
--border-strong: rgba(0, 0, 0, 0.15);
--text-primary: rgba(0, 0, 0, 0.87);
--text-secondary: rgba(0, 0, 0, 0.5);
--accent-a: rgba(56, 189, 248, 0.08);
--accent-b: rgba(139, 92, 246, 0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 112px; }
body {
margin: 0;
background:
radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 35%),
radial-gradient(circle at 80% 10%, rgba(168, 85, 247, 0.06), transparent 30%),
var(--bg);
color: var(--text-primary);
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
min-height: 100vh;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
transition: background-color 0.3s ease, color 0.3s ease;
}
html.light body {
background:
radial-gradient(circle at top left, rgba(59, 130, 246, 0.04), transparent 35%),
radial-gradient(circle at 80% 10%, rgba(168, 85, 247, 0.03), transparent 30%),
var(--bg);
color: var(--text-primary);
}
a { text-decoration: none; }
::selection {
background: rgba(56, 189, 248, 0.2);
color: rgba(255, 255, 255, 0.96);
}
html.light ::selection {
background: rgba(14, 165, 233, 0.16);
color: rgba(0, 0, 0, 0.92);
}
.hero-grid::before {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size: 72px 72px;
mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
opacity: 0.5;
pointer-events: none;
}
html.light .hero-grid::before {
background-image:
linear-gradient(rgba(15,23,42,0.045) 1px, transparent 1px),
linear-gradient(90deg, rgba(15,23,42,0.045) 1px, transparent 1px);
opacity: 0.15;
}
.mesh {
position: absolute;
inset: -20%;
background:
radial-gradient(ellipse 600px 400px at 20% 30%, rgba(59, 130, 246, 0.12), transparent),
radial-gradient(ellipse 500px 350px at 75% 30%, rgba(139, 92, 246, 0.12), transparent),
radial-gradient(ellipse 450px 300px at 55% 75%, rgba(96, 165, 250, 0.08), transparent);
opacity: 0.8;
pointer-events: none;
}
html.light .mesh {
background:
radial-gradient(ellipse 600px 400px at 20% 30%, rgba(59, 130, 246, 0.06), transparent),
radial-gradient(ellipse 500px 350px at 75% 30%, rgba(139, 92, 246, 0.06), transparent),
radial-gradient(ellipse 450px 300px at 55% 75%, rgba(96, 165, 250, 0.04), transparent);
opacity: 0.3;
}
.surface-card {
background: var(--surface);
border: 1px solid var(--border);
transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.surface-card:hover {
transform: translateY(-4px);
border-color: var(--border-strong);
background: var(--surface-strong);
box-shadow: 0 20px 80px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
html.light .surface-card {
background: rgba(255, 255, 255, 0.74);
border-color: rgba(0, 0, 0, 0.08);
box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
}
html.light .surface-card:hover {
border-color: rgba(0, 0, 0, 0.14);
background: rgba(255, 255, 255, 0.94);
box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.7) inset;
}
.gradient-border {
position: relative;
background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
border: 1px solid transparent;
box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}
html.light .gradient-border {
background: linear-gradient(180deg, rgba(250,250,250,0.95), rgba(250,250,250,0.76));
box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}
.gradient-border::before {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: linear-gradient(135deg, rgba(96,165,250,0.8), rgba(168,85,247,0.6), rgba(255,255,255,0.2));
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
html.light .gradient-border::before {
background: linear-gradient(135deg, rgba(14,165,233,0.45), rgba(139,92,246,0.32), rgba(255,255,255,0.85));
}
.feature-panel {
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
html.light .feature-panel {
background: rgba(255, 255, 255, 0.82) !important;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65), 0 18px 50px rgba(15, 23, 42, 0.08);
}
html.light .feature-panel-glow {
opacity: 0.35;
}
.hero-gradient-text {
background-image: linear-gradient(to right, rgb(125 211 252), rgba(255,255,255,0.98), rgb(196 181 253));
}
html.light .hero-gradient-text {
background-image: linear-gradient(to right, #0284c7, #1e3a8a, #7c3aed) !important;
}
.fade-section {
opacity: 0;
transform: translateY(20px);
transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
will-change: opacity, transform;
}
.fade-section.is-visible {
opacity: 1;
transform: translateY(0);
}
.nav-solid {
background: rgba(5, 5, 5, 0.92);
border-color: rgba(255,255,255,0.08);
}
html.light .nav-solid {
background: rgba(250, 250, 250, 0.82);
border-color: rgba(0, 0, 0, 0.08);
box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
}
.pill {
border: 1px solid rgba(255,255,255,0.08);
background: rgba(255,255,255,0.02);
transition: background 0.2s;
}
.pill:hover {
background: rgba(255,255,255,0.06);
}
html.light .pill {
border-color: rgba(0, 0, 0, 0.08);
background: rgba(255, 255, 255, 0.74);
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
html.light .pill:hover {
background: rgba(255,255,255,0.92);
}
.text-muted { color: var(--text-secondary); }
.section-divider {
border-top: 1px solid rgba(255,255,255,0.08);
background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent 40%);
}
html.light .section-divider {
border-top-color: rgba(0, 0, 0, 0.08);
background: linear-gradient(180deg, rgba(0,0,0,0.025), transparent 40%);
}
.theme-toggle {
transition: all 0.2s ease;
}
.theme-toggle:hover {
transform: translateY(-1px);
}
.theme-toggle svg {
width: 1.1rem;
height: 1.1rem;
pointer-events: none;
}
html.light .theme-toggle {
background: rgba(255, 255, 255, 0.78) !important;
border-color: rgba(0, 0, 0, 0.12) !important;
color: rgba(0, 0, 0, 0.72) !important;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
html.light .theme-toggle:hover {
border-color: rgba(0, 0, 0, 0.14) !important;
background: rgba(255, 255, 255, 0.94) !important;
color: rgba(0, 0, 0, 0.87) !important;
}
/* ===== Light Theme Utility Overrides ===== */
html.light .bg-black {
background-color: #fafafa !important;
}
html.light .bg-black\/80,
html.light .bg-black\/90 {
background-color: rgba(250, 250, 250, 0.9) !important;
}
html.light .bg-white {
background-color: #111111 !important;
}
html.light .bg-white\/5,
html.light .bg-white\/\[0\.02\],
html.light .bg-white\/\[0\.03\],
html.light .bg-white\/\[0\.04\],
html.light .bg-white\/\[0\.05\] {
background-color: rgba(255, 255, 255, 0.85) !important;
}
html.light .hover\:bg-white\/5:hover,
html.light .hover\:bg-white\/\[0\.04\]:hover,
html.light .hover\:bg-white\/\[0\.05\]:hover {
background-color: rgba(255, 255, 255, 0.94) !important;
}
html.light .hover\:bg-white\/90:hover {
background-color: rgba(17, 17, 17, 0.92) !important;
}
html.light .border-white\/6,
html.light .border-white\/8,
html.light .border-white\/10 {
border-color: rgba(0, 0, 0, 0.12) !important;
}
html.light .border-white\/15,
html.light .border-white\/20 {
border-color: rgba(0, 0, 0, 0.14) !important;
}
html.light .hover\:border-white\/15:hover,
html.light .hover\:border-white\/20:hover {
border-color: rgba(0, 0, 0, 0.16) !important;
}
html.light .text-white,
html.light .text-white\/90,
html.light .text-white\/92,
html.light .text-white\/95 {
color: rgba(0, 0, 0, 0.87) !important;
}
html.light .text-white\/80,
html.light .text-white\/82,
html.light .text-white\/85,
html.light .text-white\/88 {
color: rgba(0, 0, 0, 0.72) !important;
}
html.light .text-white\/68,
html.light .text-white\/70,
html.light .text-white\/72 {
color: rgba(0, 0, 0, 0.6) !important;
}
html.light .text-white\/55,
html.light .text-white\/58,
html.light .text-white\/60 {
color: rgba(0, 0, 0, 0.5) !important;
}
html.light .text-white\/45,
html.light .text-white\/50,
html.light .text-white\/52 {
color: rgba(0, 0, 0, 0.4) !important;
}
html.light .text-white\/40 {
color: rgba(0, 0, 0, 0.35) !important;
}
html.light .text-black {
color: rgba(255, 255, 255, 0.95) !important;
}
html.light .hover\:text-white:hover,
html.light .hover\:text-white\/85:hover,
html.light .hover\:text-white\/90:hover {
color: rgba(0, 0, 0, 0.87) !important;
}
html.light .shadow-glow {
box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04), 0 18px 44px rgba(15, 23, 42, 0.08) !important;
}
html.light footer {
background: #f6f6f6 !important;
border-top-color: rgba(0, 0, 0, 0.08) !important;
}
html.light #mobile-menu {
background: rgba(255, 255, 255, 0.95) !important;
border-color: rgba(0, 0, 0, 0.08) !important;
box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}
html.light .bg-sky-300\/10 {
background-color: rgba(56, 189, 248, 0.14) !important;
}
html.light .border-sky-300\/15 {
border-color: rgba(14, 165, 233, 0.22) !important;
}
html.light .border-sky-300\/20 {
border-color: rgba(14, 165, 233, 0.26) !important;
}
html.light .text-sky-200 {
color: #0369a1 !important;
}
html.light .bg-violet-300\/10 {
background-color: rgba(167, 139, 250, 0.14) !important;
}
html.light .border-violet-300\/15 {
border-color: rgba(139, 92, 246, 0.22) !important;
}
html.light .text-violet-200 {
color: #6d28d9 !important;
}
html.light .bg-emerald-300\/10 {
background-color: rgba(52, 211, 153, 0.14) !important;
}
html.light .border-emerald-300\/15 {
border-color: rgba(16, 185, 129, 0.22) !important;
}
html.light .text-emerald-200 {
color: #047857 !important;
}
html.light .text-yellow-300 {
color: #b45309 !important;
}
@media (max-width: 767px) {
.hero-grid::before { background-size: 44px 44px; }
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
.fade-section {
animation: none !important;
transition: none !important;
opacity: 1;
transform: none;
}
}
</style>
</head>
<body class="bg-black text-white antialiased selection:bg-sky-400/20 selection:text-white">
<header id="site-header" class="fixed inset-x-0 top-0 z-50 border-b border-transparent transition-all duration-300">
<div class="mx-auto flex max-w-7xl items-center justify-between px-4 py-4 sm:px-6 lg:px-8">
<a href="#top" class="flex items-center gap-3 text-sm font-medium tracking-[0.24em] text-white/90 uppercase">
<span class="inline-flex h-10 w-10 items-center justify-center rounded-2xl border border-white/10 bg-white/5 shadow-glow">
<svg class="h-5 w-5" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="1" y="1" width="9" height="9" rx="1" fill="#f25022"/>
<rect x="11" y="1" width="9" height="9" rx="1" fill="#7fba00"/>
<rect x="1" y="11" width="9" height="9" rx="1" fill="#00a4ef"/>
<rect x="11" y="11" width="9" height="9" rx="1" fill="#ffb900"/>
</svg>
</span>
<span class="hidden sm:inline">Microsoft FastTrack</span>
<span class="sm:hidden">FastTrack</span>
</a>
<div class="flex items-center gap-3">
<nav class="hidden items-center gap-6 text-sm text-white/60 md:flex">
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples" target="_blank" rel="noreferrer" class="transition hover:text-white/90">Agents</a>
<a href="https://github.com/microsoft/FastTrack" target="_blank" rel="noreferrer" class="transition hover:text-white/90">GitHub</a>
<a href="mailto:ftgithub@microsoft.com" class="transition hover:text-white/90">Contact</a>
</nav>
<button id="theme-toggle" type="button" class="theme-toggle inline-flex h-11 w-11 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-white/80" aria-pressed="false" aria-label="Toggle theme">
<span class="sr-only">Toggle theme</span>
<span data-theme-icon></span>
</button>
<button id="menu-toggle" type="button" class="inline-flex h-11 w-11 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-white/80 transition hover:border-white/20 hover:text-white md:hidden" aria-expanded="false" aria-controls="mobile-menu" aria-label="Toggle navigation">
<i data-lucide="menu" class="h-5 w-5"></i>
</button>
</div>
</div>
<div id="mobile-menu" class="mx-4 mb-4 hidden rounded-3xl border border-white/10 bg-black/90 p-3 shadow-2xl md:hidden">
<button id="mobile-theme-toggle" type="button" class="theme-toggle flex w-full items-center justify-between rounded-2xl border border-white/10 bg-white/5 px-4 py-3 text-sm text-white/80" aria-pressed="false" aria-label="Toggle theme">
<span id="mobile-theme-label">Light theme</span>
<span data-theme-icon></span>
</button>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples" target="_blank" rel="noreferrer" class="block rounded-2xl px-4 py-3 text-sm text-white/70 transition hover:bg-white/5 hover:text-white">Agents</a>
<a href="https://github.com/microsoft/FastTrack" target="_blank" rel="noreferrer" class="mt-1 block rounded-2xl px-4 py-3 text-sm text-white/70 transition hover:bg-white/5 hover:text-white">GitHub</a>
<a href="mailto:ftgithub@microsoft.com" class="mt-1 block rounded-2xl px-4 py-3 text-sm text-white/70 transition hover:bg-white/5 hover:text-white">Contact</a>
</div>
</header>
<main id="top">
<section class="hero-grid relative isolate overflow-hidden pt-32 sm:pt-36">
<div class="mesh"></div>
<div class="relative mx-auto max-w-7xl px-4 pb-20 sm:px-6 sm:pb-24 lg:px-8 lg:pb-28">
<div class="fade-section max-w-4xl">
<div class="mb-8 inline-flex items-center gap-2 rounded-full border border-white/10 bg-white/[0.03] px-4 py-2 text-xs uppercase tracking-[0.28em] text-white/55">
<span class="h-2 w-2 rounded-full bg-sky-300"></span>
FastTrack for Microsoft 365 Copilot
</div>
<h1 class="max-w-4xl text-5xl font-semibold leading-[0.95] tracking-tight text-white/95 sm:text-6xl lg:text-8xl">
FastTrack for <span class="hero-gradient-text bg-gradient-to-r from-sky-300 via-white to-violet-300 bg-clip-text text-transparent drop-shadow-lg">Microsoft 365 Copilot</span>
</h1>
<p class="mt-8 max-w-2xl text-lg leading-8 text-white/55 sm:text-xl">
Open-source tools, agent templates, and strategic guidance to accelerate your Copilot journey.
</p>
<div class="mt-10 flex flex-col gap-4 sm:flex-row">
<a href="#agents" class="inline-flex items-center justify-center gap-2 rounded-2xl border border-white/10 bg-white px-6 py-3 text-sm font-medium text-black transition hover:translate-y-[-1px] hover:bg-white/90">
Explore Agents
<i data-lucide="arrow-right" class="h-4 w-4"></i>
</a>
<a href="https://github.com/microsoft/FastTrack" target="_blank" rel="noreferrer" class="inline-flex items-center justify-center gap-2 rounded-2xl border border-white/10 bg-white/[0.03] px-6 py-3 text-sm font-medium text-white/85 transition hover:border-white/20 hover:bg-white/[0.05]">
View on GitHub
<i data-lucide="external-link" class="h-4 w-4"></i>
</a>
</div>
</div>
<div class="fade-section mt-16 grid gap-4 sm:grid-cols-3">
<div class="surface-card rounded-3xl p-6 sm:p-8">
<div class="text-sm font-medium text-white/45 uppercase tracking-wider">Open source</div>
<div class="mt-2 text-2xl font-semibold text-white/90">10+ agent templates</div>
</div>
<div class="surface-card rounded-3xl p-6 sm:p-8">
<div class="text-sm font-medium text-white/45 uppercase tracking-wider">Decision support</div>
<div class="mt-2 text-2xl font-semibold text-white/90">6 agent types compared</div>
</div>
<div class="surface-card rounded-3xl p-6 sm:p-8">
<div class="text-sm font-medium text-white/45 uppercase tracking-wider">Analytics</div>
<div class="mt-2 text-2xl font-semibold text-white/90">Audit + adoption dashboards</div>
</div>
</div>
</div>
</section>
<section class="section-divider">
<div class="mx-auto max-w-7xl px-4 py-20 sm:px-6 lg:px-8">
<div class="fade-section max-w-2xl">
<p class="text-sm uppercase tracking-[0.28em] text-white/45">What’s Inside</p>
<h2 class="mt-4 text-3xl font-semibold tracking-tight text-white/92 sm:text-4xl">Three pillars built to move teams from curiosity to deployment.</h2>
<p class="mt-4 text-base leading-7 text-white/55">Explore the decision frameworks, analytics assets, and deployable templates FastTrack teams use to accelerate real-world Copilot rollouts.</p>
</div>
<div class="mt-12 grid gap-6 lg:grid-cols-3">
<article class="fade-section surface-card rounded-[28px] p-7">
<div class="flex items-center justify-between">
<span class="inline-flex h-12 w-12 items-center justify-center rounded-2xl border border-white/10 bg-white/[0.04] text-sky-300">
<i data-lucide="book-open" class="h-5 w-5"></i>
</span>
<span class="rounded-full border border-white/10 px-3 py-1 text-xs uppercase tracking-[0.2em] text-white/45">Strategy</span>
</div>
<h3 class="mt-8 text-2xl font-semibold text-white/92">Copilot Agents Guide</h3>
<p class="mt-4 text-sm leading-7 text-white/55">Interactive decision framework to compare 6 agent types side-by-side. Find the right agent platform for your scenario in minutes.</p>
<div class="mt-6 flex flex-wrap gap-2">
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">Interactive</span>
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">6 Agent Types</span>
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">Decision Framework</span>
</div>
<a href="copilot-agent-strategy/copilot-agents-guide/index.html" class="mt-8 inline-flex items-center gap-2 text-sm font-medium text-white/82 transition hover:text-white">
Open Guide
<i data-lucide="arrow-right" class="h-4 w-4"></i>
</a>
</article>
<article class="fade-section surface-card rounded-[28px] p-7">
<div class="flex items-center justify-between">
<span class="inline-flex h-12 w-12 items-center justify-center rounded-2xl border border-white/10 bg-white/[0.04] text-violet-300">
<i data-lucide="bar-chart-3" class="h-5 w-5"></i>
</span>
<span class="rounded-full border border-white/10 px-3 py-1 text-xs uppercase tracking-[0.2em] text-white/45">Analytics</span>
</div>
<h3 class="mt-8 text-2xl font-semibold text-white/92">Copilot Audit Dashboard</h3>
<p class="mt-4 text-sm leading-7 text-white/55">Power BI template to visualize Copilot usage patterns from Microsoft Purview audit logs. Track adoption across Word, Excel, Outlook, Teams, and more.</p>
<div class="mt-6 flex flex-wrap gap-2">
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">Power BI</span>
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">Purview Audit</span>
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">Usage Analytics</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-analytics-samples/Copilot_Audit_PBI" target="_blank" rel="noreferrer" class="mt-8 inline-flex items-center gap-2 text-sm font-medium text-white/82 transition hover:text-white">
Get Template
<i data-lucide="arrow-right" class="h-4 w-4"></i>
</a>
</article>
<article class="fade-section surface-card rounded-[28px] p-7">
<div class="flex items-center justify-between">
<span class="inline-flex h-12 w-12 items-center justify-center rounded-2xl border border-white/10 bg-white/[0.04] text-cyan-300">
<i data-lucide="bot" class="h-5 w-5"></i>
</span>
<span class="rounded-full border border-white/10 px-3 py-1 text-xs uppercase tracking-[0.2em] text-white/45">Templates</span>
</div>
<h3 class="mt-8 text-2xl font-semibold text-white/92">Agent Samples</h3>
<p class="mt-4 text-sm leading-7 text-white/55">Ready-to-deploy agent templates for Copilot Studio, Agent Builder, and GitHub Copilot CLI. From autonomous email agents to multi-model AI councils.</p>
<div class="mt-6 flex flex-wrap gap-2">
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">10+ Agents</span>
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">Copilot Studio</span>
<span class="pill rounded-full px-3 py-1 text-xs text-white/60">Agent Builder</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples" target="_blank" rel="noreferrer" class="mt-8 inline-flex items-center gap-2 text-sm font-medium text-white/82 transition hover:text-white">
Browse Samples
<i data-lucide="arrow-right" class="h-4 w-4"></i>
</a>
</article>
</div>
</div>
</section>
<section id="agents" class="section-divider">
<div class="mx-auto max-w-7xl px-4 py-20 sm:px-6 lg:px-8">
<div class="fade-section flex flex-col gap-4 md:flex-row md:items-end md:justify-between">
<div>
<p class="text-sm uppercase tracking-[0.28em] text-white/45">Agent Templates</p>
<h2 class="mt-4 text-3xl font-semibold tracking-tight text-white/92 sm:text-4xl">Ready-to-deploy agents across platforms</h2>
</div>
<p class="max-w-xl text-sm leading-7 text-white/55">From autonomous Copilot Studio agents to declarative specialists and a multi-model GitHub CLI council, these templates help teams go from concept to production faster.</p>
</div>
<div class="mt-12 grid gap-5 md:grid-cols-2 xl:grid-cols-3">
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-sky-300/15 bg-sky-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-sky-200">Copilot Studio</span>
<span class="rounded-full border border-emerald-400/20 bg-emerald-400/10 px-2.5 py-0.5 text-[10px] font-semibold uppercase tracking-[0.2em] text-emerald-300">New</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">PowerClaw Agent</h3>
<p class="mt-2 text-sm leading-7 text-white/55">24/7 AI Chief of Staff with autonomous briefings, task execution, and proactive coordination.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📅 Calendar-driven</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🧠 Long-term memory</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">⚡ 15-min setup</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/copilot-studio-agents/ca-PowerClawAgent" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-sky-300/15 bg-sky-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-sky-200">Copilot Studio</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">AutoReply Agent</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Autonomous email research and response workflows that draft thoughtful follow-ups at scale.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📧 Email monitoring</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🔍 Source research</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">💬 Auto-response</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/copilot-studio-agents/ca-AutoReplyAgent" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-sky-300/15 bg-sky-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-sky-200">Copilot Studio</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">ProductQuote Agent</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Automated sales quote generation that turns requirements into polished outputs quickly.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🧾 Quote generation</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📊 Excel lookup</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📄 Word templates</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/copilot-studio-agents/ca-ProductQuoteAgent" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-violet-300/15 bg-violet-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-violet-200">Agent Builder</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">Deep Research</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Systematic reasoning workflows with confidence scoring for high-trust research scenarios.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🔬 Systematic reasoning</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📊 Confidence scoring</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🎯 Fact verification</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/agent-builder-agents/da-DeepResearch" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-violet-300/15 bg-violet-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-violet-200">Agent Builder</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">Manager Simulator</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Multi-agent management training platform for practicing coaching, delegation, and judgment.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">👥 3 AI agents</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🎭 Role-play scenarios</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🏆 Coaching feedback</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/agent-builder-agents/da-ManagerSimulator" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-violet-300/15 bg-violet-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-violet-200">Agent Builder</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">Reasoning Agent</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Brainstorming and planning sounding board that helps teams sharpen ideas through dialogue.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">💭 Deep contemplation</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🔄 Iterative refinement</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📝 Planning sounding board</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/agent-builder-agents/da-ReasoningAgent" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-violet-300/15 bg-violet-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-violet-200">Agent Builder</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">OmniAgent</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Dynamic specialist that adapts to any domain with flexible instructions and reusable patterns.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🎯 Dynamic personas</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🔀 Multi-domain</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🧩 Adaptive specialist</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/agent-builder-agents/da-OmniAgent" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-violet-300/15 bg-violet-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-violet-200">Agent Builder</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">VibeWriting Agent</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Proofreading assistance that preserves your voice while tightening clarity, tone, and polish.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">✍️ Voice preservation</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">✨ Grammar & polish</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🎵 Tone matching</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/agent-builder-agents/da-VibeWritingAgent" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-violet-300/15 bg-violet-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-violet-200">Agent Builder</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">CompareDocs Agent</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Contract and document comparison with field-level analysis for faster review and alignment.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📑 Field-by-field analysis</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">⚖️ Contract comparison</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🔍 Placeholder detection</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/agent-builder-agents/da-CompareDocs" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
<article class="fade-section surface-card rounded-[28px] p-6">
<div class="flex items-center gap-2">
<span class="inline-flex rounded-full border border-emerald-300/15 bg-emerald-300/10 px-3 py-1 text-xs font-medium uppercase tracking-[0.22em] text-emerald-200">GitHub CLI</span>
</div>
<h3 class="mt-5 text-xl font-semibold text-white/92">AI Council</h3>
<p class="mt-2 text-sm leading-7 text-white/55">Multi-model deliberation across Claude, GPT, and Gemini for richer decisions and tradeoff analysis.</p>
<div class="mt-4 flex flex-wrap gap-1.5">
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🤖 3 LLMs debating</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">📊 Decision dashboard</span>
<span class="pill rounded-full px-2.5 py-1 text-xs text-white/60">🗳️ Consensus voting</span>
</div>
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-agent-samples/github-copilot-agents/Council" target="_blank" rel="noreferrer" class="mt-5 inline-flex items-center gap-2 text-sm text-white/80 transition hover:text-white">View template <i data-lucide="arrow-right" class="h-4 w-4"></i></a>
</article>
</div>
</div>
</section>
<section class="section-divider">
<div class="mx-auto max-w-7xl px-4 py-20 sm:px-6 lg:px-8">
<div class="fade-section max-w-2xl">
<p class="text-sm uppercase tracking-[0.28em] text-white/45">Analytics & Resources</p>
<h2 class="mt-4 text-3xl font-semibold tracking-[-0.04em] text-white/92 sm:text-4xl">Adoption intelligence and planning assets in one place</h2>
</div>
<div class="mt-12 grid gap-6 lg:grid-cols-2">
<section class="fade-section surface-card rounded-[30px] p-8">
<div class="flex items-center gap-3">
<span class="inline-flex h-11 w-11 items-center justify-center rounded-2xl border border-white/10 bg-white/[0.04] text-sky-300">
<i data-lucide="chart-line" class="h-5 w-5"></i>
</span>
<div>
<h3 class="text-2xl font-semibold text-white/92">Analytics tools</h3>
<p class="mt-1 text-sm text-white/50">Track usage, adoption, and organizational patterns.</p>
</div>
</div>
<div class="mt-8 space-y-4">
<a href="https://github.com/microsoft/FastTrack/tree/master/copilot-analytics-samples/Copilot_Audit_PBI" target="_blank" rel="noreferrer" class="block rounded-3xl border border-white/8 bg-white/[0.02] p-5 transition hover:border-white/15 hover:bg-white/[0.04]">
<div class="flex items-start justify-between gap-4">
<div>
<div class="text-base font-medium text-white/88">Copilot Audit PBI</div>
<p class="mt-2 text-sm leading-7 text-white/52">Purview-based usage analytics across Copilot interaction events and app surfaces.</p>
</div>
<i data-lucide="arrow-up-right" class="mt-1 h-4 w-4 text-white/45"></i>
</div>
</a>
<a href="copilot-analytics-samples/VivaInsights-Copilot-Dashboard-Sample/" class="block rounded-3xl border border-white/8 bg-white/[0.02] p-5 transition hover:border-white/15 hover:bg-white/[0.04]">
<div class="flex items-start justify-between gap-4">
<div>
<div class="text-base font-medium text-white/88">Viva Insights Dashboard</div>
<p class="mt-2 text-sm leading-7 text-white/52">Correlate Copilot adoption with collaboration habits using Viva Insights exports.</p>
</div>
<i data-lucide="arrow-up-right" class="mt-1 h-4 w-4 text-white/45"></i>
</div>
</a>
<a href="copilot-analytics-samples/copilot-usage-users-and-apps/" class="block rounded-3xl border border-white/8 bg-white/[0.02] p-5 transition hover:border-white/15 hover:bg-white/[0.04]">
<div class="flex items-start justify-between gap-4">
<div>
<div class="text-base font-medium text-white/88">Usage Dashboard</div>
<p class="mt-2 text-sm leading-7 text-white/52">Understand usage by user cohort and application to guide enablement and training investment.</p>
</div>
<i data-lucide="arrow-up-right" class="mt-1 h-4 w-4 text-white/45"></i>
</div>
</a>
</div>
</section>
<section class="fade-section surface-card rounded-[30px] p-8">
<div class="flex items-center gap-3">
<span class="inline-flex h-11 w-11 items-center justify-center rounded-2xl border border-white/10 bg-white/[0.04] text-violet-300">
<i data-lucide="compass" class="h-5 w-5"></i>
</span>
<div>
<h3 class="text-2xl font-semibold text-white/92">Strategy resources</h3>
<p class="mt-1 text-sm text-white/50">Plan, compare, and shape the next wave of Copilot experiences.</p>
</div>
</div>
<div class="mt-8 space-y-4">
<a href="copilot-agent-strategy/copilot-agents-guide/index.html" class="block rounded-3xl border border-white/8 bg-white/[0.02] p-5 transition hover:border-white/15 hover:bg-white/[0.04]">
<div class="flex items-start justify-between gap-4">
<div>
<div class="text-base font-medium text-white/88">Agents Guide</div>
<p class="mt-2 text-sm leading-7 text-white/52">Interactive comparison framework for selecting the right Microsoft Copilot agent path.</p>
</div>
<i data-lucide="arrow-up-right" class="mt-1 h-4 w-4 text-white/45"></i>
</div>
</a>
<a href="copilot-agent-strategy/copilot-agent-brainstorm/" class="block rounded-3xl border border-white/8 bg-white/[0.02] p-5 transition hover:border-white/15 hover:bg-white/[0.04]">
<div class="flex items-start justify-between gap-4">
<div>
<div class="text-base font-medium text-white/88">Agent Brainstorm Template</div>
<p class="mt-2 text-sm leading-7 text-white/52">PowerPoint planning template for agent flows, scenarios, and knowledge architecture.</p>
</div>
<i data-lucide="arrow-up-right" class="mt-1 h-4 w-4 text-white/45"></i>
</div>
</a>
<a href="copilot-prompt-samples/" class="block rounded-3xl border border-white/8 bg-white/[0.02] p-5 transition hover:border-white/15 hover:bg-white/[0.04]">
<div class="flex items-start justify-between gap-4">
<div>
<div class="text-base font-medium text-white/88">Prompt Samples</div>
<p class="mt-2 text-sm leading-7 text-white/52">Reference prompts and patterns to help teams unlock stronger outcomes from Frontier agents.</p>
</div>
<i data-lucide="arrow-up-right" class="mt-1 h-4 w-4 text-white/45"></i>
</div>
</a>
</div>
</section>
</div>
</div>
</section>
</main>
<footer class="border-t border-white/10 bg-black">
<div class="mx-auto flex max-w-7xl flex-col gap-6 px-4 py-12 text-sm text-white/40 sm:px-6 lg:flex-row lg:items-center lg:justify-between lg:px-8">
<div>
<div class="text-white/70 font-medium">Microsoft FastTrack • 2026</div>
<p class="mt-2 text-white/45">MIT licensed samples and guidance for accelerating Microsoft 365 Copilot deployments.</p>
</div>
<div class="flex flex-wrap gap-x-6 gap-y-3">
<a href="https://learn.microsoft.com/en-us/microsoft-365/fasttrack/microsoft-365-copilot#microsoft-365-copilot-extensibility" target="_blank" rel="noreferrer" class="transition hover:text-white/85">FastTrack Service Description</a>
<a href="https://github.com/microsoft/FastTrack" target="_blank" rel="noreferrer" class="transition hover:text-white/85">GitHub</a>
<a href="mailto:ftgithub@microsoft.com" class="transition hover:text-white/85">Contact</a>
</div>
</div>
</footer>
<script>
const header = document.getElementById('site-header');
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
const themeToggle = document.getElementById('theme-toggle');
const mobileThemeToggle = document.getElementById('mobile-theme-toggle');
const mobileThemeLabel = document.getElementById('mobile-theme-label');
const animatedSections = document.querySelectorAll('.fade-section');
const updateThemeToggleButtons = () => {
const isLight = document.documentElement.classList.contains('light');
const icon = isLight ? 'moon' : 'sun';
const nextThemeLabel = isLight ? 'Switch to dark theme' : 'Switch to light theme';
[themeToggle, mobileThemeToggle].forEach((button) => {
if (!button) return;
button.setAttribute('aria-label', nextThemeLabel);
button.setAttribute('title', nextThemeLabel);
button.setAttribute('aria-pressed', String(isLight));
const iconSlot = button.querySelector('[data-theme-icon]');
if (iconSlot) {
iconSlot.innerHTML = `<i data-lucide="${icon}" class="h-5 w-5"></i>`;
}
});
if (mobileThemeLabel) {
mobileThemeLabel.textContent = isLight ? 'Dark theme' : 'Light theme';
}
lucide.createIcons();
};
const setTheme = (theme) => {
document.documentElement.classList.toggle('light', theme === 'light');
try {
localStorage.setItem('theme', theme);
} catch (error) {
// Ignore storage access issues and keep the in-memory theme.
}
updateThemeToggleButtons();
};
const toggleTheme = () => {
const isLight = document.documentElement.classList.contains('light');
setTheme(isLight ? 'dark' : 'light');
};
const updateHeader = () => {
if (window.scrollY > 24) {
header.classList.add('nav-solid');
} else {
header.classList.remove('nav-solid');
}
};
updateHeader();
window.addEventListener('scroll', updateHeader, { passive: true });
menuToggle.addEventListener('click', () => {
const expanded = menuToggle.getAttribute('aria-expanded') === 'true';
menuToggle.setAttribute('aria-expanded', String(!expanded));
mobileMenu.classList.toggle('hidden');
});
themeToggle.addEventListener('click', toggleTheme);
if (mobileThemeToggle) {
mobileThemeToggle.addEventListener('click', toggleTheme);
}
mobileMenu.querySelectorAll('a').forEach((link) => {
link.addEventListener('click', () => {
menuToggle.setAttribute('aria-expanded', 'false');
mobileMenu.classList.add('hidden');
});
});
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry, index) => {
if (entry.isIntersecting) {
setTimeout(() => {
entry.target.classList.add('is-visible');
}, index * 100);
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });
animatedSections.forEach((section) => {
observer.observe(section);
});
updateThemeToggleButtons();
</script>
</body>
</html>