feat: initial release of NASG

This commit is contained in:
UltraLionFr
2025-08-20 22:56:16 +02:00
parent 34af26c8ea
commit 586c1a9720
21 changed files with 540 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
"use client";
import { motion } from "framer-motion";
import { Lock } from "lucide-react";
export default function SecurityNotice() {
return (
<motion.div
className="mt-4 flex items-start gap-2 rounded-xl border border-sky-500/30 bg-black/50 p-3 font-mono text-xs text-sky-300"
initial={{ opacity: 0, y: 15 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.4, duration: 0.5, ease: "easeOut" }}
>
<Lock className="h-4 w-4 mt-0.5 shrink-0 text-sky-400" />
<p>
No secrets generated are saved or transmitted.
Everything is generated <span className="text-white font-semibold">locally</span> in your browser.
</p>
</motion.div>
);
}