20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
export function LogoGise(){
|
|
return(
|
|
<div className="sm:mx-auto sm:w-full sm:max-w-md">
|
|
<div className="flex justify-center">
|
|
<div className="h-12 w-12 bg-blue-900 rounded-lg flex items-center justify-center shadow-sm border border-blue-800">
|
|
<svg className="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<h2 className="mt-6 text-center text-3xl font-bold tracking-tight text-slate-900">
|
|
AEGIS <span className="font-light text-slate-500">by GISE</span>
|
|
</h2>
|
|
<p className="mt-2 text-center text-sm text-slate-500 uppercase tracking-widest font-semibold">
|
|
Accès restreint
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|
|
export default LogoGise; |