adding new title and favicon
This commit is contained in:
parent
90c9aaa295
commit
2e6b1902e2
BIN
public/assets/logose.png
Normal file
BIN
public/assets/logose.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.0 KiB |
@ -42,6 +42,7 @@ function MyApp({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<AppView>
|
||||
<Head>
|
||||
<link rel="icon" type="imagem/png" href="/assets/logose.png" />
|
||||
<meta name="viewport" content="viewport-fit=cover" />
|
||||
</Head>
|
||||
<Home />
|
||||
|
||||
@ -37,6 +37,7 @@ export default class MyDocument extends Document {
|
||||
return (
|
||||
<Html>
|
||||
<Head>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com"/>
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin='true' />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet"/>
|
||||
|
||||
@ -39,11 +39,10 @@ export default function ForgotPassword() {
|
||||
}
|
||||
}, [password])
|
||||
|
||||
|
||||
return (
|
||||
<ForgotPasswordView auth={rota} >
|
||||
<Head>
|
||||
<title>Smart Energia - Esqueceu a Senha</title>
|
||||
<title>Smart Energia</title>
|
||||
</Head>
|
||||
<Image src='/assets/marca1.svg' width={350} height={350} />
|
||||
<ForgotPasswordContainer>
|
||||
|
||||
@ -45,7 +45,7 @@ export default function Home() {
|
||||
return (
|
||||
<LoginView auth={rota} >
|
||||
<Head>
|
||||
<title>Smart Energia - Login</title>
|
||||
<title>Smart Energia</title>
|
||||
</Head>
|
||||
<Image src='/assets/marca1.svg' width={350} height={350} />
|
||||
<LoginContainer>
|
||||
|
||||
@ -16,6 +16,7 @@ import LineChart from '../../components/graph/LineChart';
|
||||
import { LineBarChart } from '../../components/graph/LineBarChart';
|
||||
import { EconomiaAcumulada } from '../../services/economiaAcumulada';
|
||||
import { EvolucaoPld } from '../../services/evolucaoPld';
|
||||
import Head from 'next/head';
|
||||
|
||||
export default function region() {
|
||||
const router = useRouter()
|
||||
@ -36,6 +37,9 @@ export default function region() {
|
||||
<main style={{
|
||||
width: '100%',
|
||||
}}>
|
||||
<Head>
|
||||
<title>Smart Energia - PLD</title>
|
||||
</Head>
|
||||
<Header name='' />
|
||||
<RenderIf isTrue={page==='table'? true : false}>
|
||||
<Link href='/dashboard' >{'< voltar para visão geral'}</Link>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user