Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development - Update README; #12

Merged
merged 25 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
84c415b
feat: adicionando 'search-ip' ao projeto.
Gugahnstn Sep 21, 2023
b3ee0f1
feat: adicionando a variavel 'requestQuery'.
Gugahnstn Sep 21, 2023
d3f00a7
feat: Adding a new link to capture the flags of the countries.
Gugahnstn Sep 25, 2023
be30697
feat: Adding the 'requestDomainAndIp' variable and passing it as a pa…
Gugahnstn Sep 25, 2023
8e07f6d
feat: adding app.tsx
Gugahnstn Oct 2, 2023
8eef7d2
feat: adding types to SearchMap
Gugahnstn Oct 2, 2023
494991a
feat: modifying types of the Data interface.
Gugahnstn Oct 2, 2023
ca13824
feat: adding a Footer to the project.
Gugahnstn Oct 2, 2023
429be78
feat: adding style to the Footer.
Gugahnstn Oct 2, 2023
11702e3
style: adding z-index to the 'HeaderComponent'
Gugahnstn Oct 2, 2023
6da23e6
feat: capitalizing the first letter of 'world connection'.
Gugahnstn Oct 2, 2023
17fd7f0
fix: removing the 'SearchMap' file and adding 'index.tsx'.
Gugahnstn Oct 2, 2023
50fe79d
style: main style
Gugahnstn Oct 2, 2023
cb087d0
feat: adding Footer
Gugahnstn Oct 2, 2023
cb95c9a
fix: removing the 'SearchMap' file and adding 'index.tsx'.
Gugahnstn Oct 2, 2023
c22a2f4
yarn.lock
Gugahnstn Oct 2, 2023
9a65586
fix: modifying import
Gugahnstn Oct 2, 2023
0eb8a04
yarn-lock
Gugahnstn Oct 2, 2023
1c86e19
package.json
Gugahnstn Oct 2, 2023
a3a58d6
feat: adding padding and remove paddings
Gugahnstn Oct 2, 2023
b76cba4
feat: adding 'div'
Gugahnstn Oct 2, 2023
702db5e
style: adding ::after
Gugahnstn Oct 2, 2023
965f60f
update README
Gugahnstn Oct 2, 2023
547b78f
update README
Gugahnstn Oct 2, 2023
1fa0cbd
Merge branch 'main' into development
Gugahnstn Oct 2, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,29 @@
# Ipcats - Pesquisador de Ips e dominios.
VALEU RAPAZIADA!!
# Ipcats - Obtenha informações de um endereço IP e de um domínio.


O IPCats é um site dedicado à busca de informações de IPs e domínios. Nosso sistema oferece uma ampla gama de recursos, incluindo uma funcionalidade de pesquisa abrangente e um mapa que indica a localização do provedor do IP ou domínio em questão.

Para construir esta aplicação, utilizamos a biblioteca React, uma ferramenta poderosíssima para a criação de interfaces. Neste projeto, utilizamos a API do [my-ip-address](https://my-ip-address.bohr.io/api) em conjunto com uma proxy da API [IP-API](https://ip-api.com/). Além disso, Foi utilizado o [Mapbox](https://www.mapbox.com/) para o mapa do site.

Nossa missão é fornecer uma plataforma confiável e fácil de usar para aqueles que desejam acessar informações relacionadas a IPs e domínios, e continuamos a aprimorar e expandir nossos recursos para melhor atender às necessidades dos nossos usuários.

Caso queira testar o projeto em sua máquina, utilize os seguinte comandos no terminal:

```sh
npm install ou yarn install
```

Ambiente de Desenvolvimento:
```sh
npm run dev ou yarn dev
```

Para construir os arquivos do Projeto:
```sh
npm run build ou yarn build
```

Para Iniciar o Projeto:
```sh
npm run start ou yarn start
```
5 changes: 5 additions & 0 deletions src/components/CardResult/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,10 @@ export const CardPhrase = styled.p`
color: ${theme.colors.result};
text-align: center;
font-weight: 700;
::after {
content: attr(data-text);
font-size: calc(${theme.font.sizes.text_lg} - 0.1rem * (attr(data-text) - 10));
}
`}
`;
2 changes: 1 addition & 1 deletion src/templates/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ const Footer = () => {
)
}

export default Footer
export default Footer;