add turborepo
This commit is contained in:
20
apps/id.saladeaula.digital/app/routes/deny.tsx
Normal file
20
apps/id.saladeaula.digital/app/routes/deny.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import { LockIcon } from 'lucide-react'
|
||||
import type { Route } from './+types'
|
||||
|
||||
export function meta({}: Route.MetaArgs) {
|
||||
return [{ title: 'Acesso negado · EDUSEG®' }]
|
||||
}
|
||||
|
||||
export default function Deny({}: Route.ComponentProps) {
|
||||
return (
|
||||
<>
|
||||
<div className="flex flex-col text-center items-center gap-6">
|
||||
<LockIcon className="size-12" />
|
||||
<div className="space-y-1.5">
|
||||
<h1 className="text-xl text-gray-10 font-bold">Acesso negado.</h1>
|
||||
<p>Você não tem permissão.</p>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user