CipherStreamWeb converted to use Vite

This commit is contained in:
Mattrixwv
2025-08-13 23:31:29 -04:00
parent 70f9adb930
commit c9bddfa74d
120 changed files with 13931 additions and 3 deletions

View File

@@ -0,0 +1,51 @@
import { polysubstitutionLinks } from '@/util/LinksUtil';
import { createFileRoute, Link } from '@tanstack/react-router';
export const Route = createFileRoute('/polysubstitution/')({
component: PolyPage
});
function PolyPage(){
return (
<main
className="flex flex-col items-center"
>
<h1
className="font-bold text-4xl my-8"
>
Poly-Substitution Ciphers
</h1>
<p
className="text-center"
>
Poly-Substitution ciphers encrypt text multiple characters at a time.
These are more secure than mono-substitution ciphers because attempts to crack the ciphers through brute force must guess two characters at a time instead of one.
</p>
<div
className="mt-8"
>
<ul
className="grid grid-cols-3 gap-8"
>
{
polysubstitutionLinks.map(cipher => (
<li
key={cipher.label}
className="text-center"
>
<Link
className="cursor-pointer text-lg"
to={cipher.to}
>
{cipher.label}
</Link>
</li>
))
}
</ul>
</div>
</main>
);
}