feat: brand login with rever assets
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This commit is contained in:
parent
598b478ea7
commit
fbb8511cf3
3 changed files with 14 additions and 0 deletions
BIN
web/public/rever-8.png
Normal file
BIN
web/public/rever-8.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
|
|
@ -20,6 +20,9 @@ const jetBrainsMono = JetBrains_Mono({
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Sistema de chamados",
|
title: "Sistema de chamados",
|
||||||
description: "Plataforma de chamados da Rever",
|
description: "Plataforma de chamados da Rever",
|
||||||
|
icons: {
|
||||||
|
icon: "/rever-8.png",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function RootLayout({
|
export default async function RootLayout({
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useEffect, useState } from "react"
|
import { useEffect, useState } from "react"
|
||||||
|
import Image from "next/image"
|
||||||
import Link from "next/link"
|
import Link from "next/link"
|
||||||
import { useRouter, useSearchParams } from "next/navigation"
|
import { useRouter, useSearchParams } from "next/navigation"
|
||||||
import { GalleryVerticalEnd } from "lucide-react"
|
import { GalleryVerticalEnd } from "lucide-react"
|
||||||
|
|
@ -50,6 +51,16 @@ export default function LoginPage() {
|
||||||
<LoginForm callbackUrl={callbackUrl} disabled={shouldDisable} />
|
<LoginForm callbackUrl={callbackUrl} disabled={shouldDisable} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="flex justify-center">
|
||||||
|
<Image
|
||||||
|
src="/rever-8.png"
|
||||||
|
alt="Logotipo Rever Tecnologia"
|
||||||
|
width={96}
|
||||||
|
height={96}
|
||||||
|
className="h-12 w-auto"
|
||||||
|
priority
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<footer className="flex justify-center text-sm text-neutral-500">
|
<footer className="flex justify-center text-sm text-neutral-500">
|
||||||
Desenvolvido por Esdras Renan
|
Desenvolvido por Esdras Renan
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue