Skip to content

Commit

Permalink
Merge pull request #15 from moutinhofuturedev/develop
Browse files Browse the repository at this point in the history
Develop - estrutura para renderizar icon do projeto de formulário
  • Loading branch information
moutinhofuturedev authored Jan 20, 2023
2 parents 608e814 + 5b83dec commit ca1628e
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 1 deletion.
Binary file removed public/favicon.ico
Binary file not shown.
6 changes: 6 additions & 0 deletions public/favicon/about.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This favicon was generated using the following font:

- Font Title: Montserrat
- Font Author: Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
- Font Source: http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf
- Font License: SIL Open Font License, 1.1 (http://scripts.sil.org/OFL))
Binary file added public/favicon/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"Good-Form","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
18 changes: 18 additions & 0 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import NextDocument, { Html, Head, Main, NextScript } from 'next/document';

export default class Document extends NextDocument {
render() {
return (
<Html lang='pt-BR'>
<Head>
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.ico" />
</Head>

<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
1 change: 0 additions & 1 deletion src/pages/update/[personId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ export default function UpdatePerson({ person }: updatePersonId) {
<FormLabel>Nome</FormLabel>
<Input
isDisabled
variant="filled"
type="text"
id="name"
placeholder="Seu nome"
Expand Down

1 comment on commit ca1628e

@vercel
Copy link

@vercel vercel bot commented on ca1628e Jan 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.