Update web whit security notices

This commit is contained in:
MacRimi 2025-03-09 11:48:23 +01:00
parent 9859b64cde
commit cdc65bed48

View File

@ -1,6 +1,6 @@
import Image from "next/image" import Image from "next/image"
import Link from "next/link" import Link from "next/link"
import { AlertTriangle, FileCode, Shield } from 'lucide-react'; import { AlertTriangle, FileCode, Shield } from "lucide-react"
export default function IntroductionPage() { export default function IntroductionPage() {
return ( return (
@ -58,36 +58,36 @@ export default function IntroductionPage() {
</Link>{" "} </Link>{" "}
section. section.
</p> </p>
</div>
{/* Security Notice */} {/* Security Notice */}
<div className="bg-white border rounded-lg shadow-sm p-4 my-4"> <div className="bg-white border rounded-lg shadow-sm p-4 my-4">
<h3 className="text-lg font-medium mb-2 flex items-center"> <h3 className="text-lg font-medium mb-2 flex items-center">
<AlertTriangle className="h-5 w-5 text-yellow-500 mr-2" /> <AlertTriangle className="h-5 w-5 text-yellow-500 mr-2" />
Security Information Security Information
</h3> </h3>
<p className="mb-3">Be careful when copying scripts from the internet. Always remember to check the source!</p> <p className="mb-3">Be careful when copying scripts from the internet. Always remember to check the source!</p>
<div className="flex flex-wrap gap-2"> <div className="flex flex-wrap gap-2">
<a <a
href="https://github.com/MacRimi/ProxMenux/blob/main/install_proxmenux.sh" href="https://github.com/MacRimi/ProxMenux/blob/main/install_proxmenux.sh"
className="inline-flex items-center px-3 py-2 text-sm font-medium rounded-md bg-blue-600 hover:bg-blue-700 text-white" className="inline-flex items-center px-3 py-2 text-sm font-medium rounded-md bg-blue-600 hover:bg-blue-700 text-white"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
<FileCode className="h-4 w-4 mr-2" /> <FileCode className="h-4 w-4 mr-2" />
View Source Code View Source Code
</a> </a>
<a <a
href="https://github.com/MacRimi/ProxMenux?tab=coc-ov-file#-2-security--code-responsibility" href="https://github.com/MacRimi/ProxMenux?tab=coc-ov-file#-2-security--code-responsibility"
className="inline-flex items-center px-3 py-2 text-sm font-medium rounded-md bg-green-600 hover:bg-green-700 text-white" className="inline-flex items-center px-3 py-2 text-sm font-medium rounded-md bg-green-600 hover:bg-green-700 text-white"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
<Shield className="h-4 w-4 mr-2" /> <Shield className="h-4 w-4 mr-2" />
Code of Conduct Code of Conduct
</a> </a>
</div> </div>
</div> </div>
</div>
) )
} }