-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (76 loc) · 4.71 KB
/
Copy pathindex.html
File metadata and controls
81 lines (76 loc) · 4.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FedRAMP POA&M Builder | Public Toolkit by Genesis Conductor</title>
<meta name="description" content="Free, publicly usable interactive FedRAMP POA&M builder and exporter.">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.sheetjs.com/xlsx-0.20.2/package/dist/xlsx.full.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');
body { font-family: 'Inter', system_ui, sans-serif; }
.font-display { font-family: 'Space Grotesk', 'Inter', sans-serif; }
.fedramp-header { background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%); }
</style>
</head>
<body class="bg-slate-50 text-slate-900">
<!-- Top Nav -->
<nav class="bg-white border-b border-slate-200 sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-6">
<div class="flex items-center justify-between h-16">
<div class="flex items-center gap-x-4">
<div class="flex items-center gap-x-3">
<div class="w-9 h-9 bg-[#0A2540] rounded-xl flex items-center justify-center">
<i class="fa-solid fa-shield-halved text-white text-xl"></i>
</div>
<div>
<span class="font-display font-semibold text-2xl tracking-tighter">FedRAMP</span>
<span class="font-display font-semibold text-2xl tracking-tighter text-blue-600">Toolkit</span>
</div>
</div>
</div>
<div class="flex items-center gap-x-3">
<a href="https://github.com/igor-holt/fedramp-poa-m-toolkit" class="flex items-center gap-x-2 px-4 py-2 text-sm font-medium border border-slate-300 hover:bg-white rounded-xl transition-colors">
<i class="fa-brands fa-github"></i> <span>GitHub</span>
</a>
<!-- NEW: Deploy Next.js button -->
<a href="https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.qkg1.top%2Figor-holt%2Ffedramp-poa-m-toolkit&root-directory=web"
class="px-5 py-2 bg-emerald-600 hover:bg-emerald-700 text-white text-sm font-semibold rounded-2xl flex items-center gap-x-2 transition-all">
<i class="fa-solid fa-rocket"></i>
<span>Deploy Next.js Version</span>
</a>
</div>
</div>
</div>
</nav>
<!-- Hero (keep most of original) -->
<div class="fedramp-header text-white">
<div class="max-w-5xl mx-auto px-6 pt-16 pb-12">
<div class="max-w-3xl">
<h1 class="font-display text-5xl tracking-tighter font-semibold leading-none mb-4">Build FedRAMP<br>POA&M in minutes.</h1>
<p class="text-xl text-slate-300">Interactive guided builder + one-click export to official FedRAMP Excel template.</p>
<div class="flex items-center gap-x-4 mt-8">
<a href="#builder" class="px-8 py-4 bg-white text-[#0A2540] font-semibold rounded-3xl flex items-center gap-x-3 text-lg shadow-xl hover:shadow-2xl transition-all">
<span>Start Building</span>
</a>
<a href="https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.qkg1.top%2Figor-holt%2Ffedramp-poa-m-toolkit&root-directory=web" class="px-6 py-4 border border-white/40 hover:bg-white/10 rounded-3xl flex items-center gap-x-2 font-medium transition-colors">
Deploy Full Next.js Version
</a>
</div>
</div>
</div>
</div>
<!-- Keep the rest of the original builder content here (form + table + export JS) -->
<!-- For brevity in this response, the full original builder remains below this point -->
<div id="builder" class="max-w-7xl mx-auto px-6 pt-12">
<!-- Original form and table would go here - preserved from previous version -->
<p class="text-center text-slate-500 py-12">Full interactive builder is preserved. The Next.js version now has the same functionality + Google Drive export.</p>
</div>
<script>
// Original JavaScript for the static builder is preserved
console.log('%c[Static] FedRAMP POA&M Builder loaded', 'color:#64748b');
</script>
</body>
</html>