-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2614226
commit cdc13b0
Showing
11 changed files
with
263 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Política de Privacidade do Wallet Digitalz | ||
|
||
Este aplicativo de gerenciamento e registro de valores monetários é desenvolvido e disponibilizado pela Criar.Art Tecnologia (doravante referida como "nós", "nosso" ou "Criar.Art"). | ||
|
||
## Informações que coletamos | ||
|
||
Quando você utiliza o Wallet Digitalz, não coletamos nem armazenamos suas informações pessoais em nossos servidores. Todas as informações inseridas no aplicativo são armazenadas localmente no seu dispositivo e são criptografadas para garantir a segurança e privacidade dos seus dados. | ||
|
||
## Responsabilidade pelos dados | ||
|
||
Não nos responsabilizamos pelos dados inseridos no Wallet Digitalz. É de sua inteira responsabilidade a veracidade, segurança e privacidade dos dados que você insere e armazena no aplicativo. | ||
|
||
## Uso das informações | ||
|
||
As informações inseridas no Wallet Digitalz são exclusivamente para seu uso pessoal e não serão compartilhadas com terceiros. Utilizamos medidas de segurança adequadas para proteger seus dados contra acesso não autorizado ou divulgação. | ||
|
||
## Alterações na política de privacidade | ||
|
||
Esta política de privacidade pode ser atualizada periodicamente para refletir alterações nas práticas de informação. Recomendamos que você revise esta política de privacidade periodicamente para se manter informado sobre como proteger suas informações. | ||
|
||
## Contato | ||
|
||
Se você tiver alguma dúvida ou preocupação sobre nossa política de privacidade ou sobre o Wallet Digitalz, entre em contato conosco pelo seguinte endereço de e-mail: [[email protected]](mailto:[email protected]). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { describe, expect, it } from 'vitest' | ||
import { mount } from '@vue/test-utils' | ||
|
||
import Privacy from './Privacy.vue' | ||
|
||
const wrapper = mount(Privacy) | ||
const card = wrapper.find('.highlight-top') | ||
|
||
describe('Basic render Privacy', () => { | ||
it('is Privacy a vue instance', () => { | ||
expect(wrapper.exists()).toBeTruthy() | ||
}) | ||
|
||
it('Check if the card is rendered correctly', () => { | ||
expect(card.find('h2').text()).toBe('Política de Privacidade do Wallet Digitalz') | ||
expect(card.findAll('p').length).toBe(6) // Verifique se todos os parágrafos estão presentes | ||
expect(card.findAll('h3').length).toBe(5) // Verifique se todos os títulos secundários estão presentes | ||
}) | ||
|
||
it('Check if the email contact is rendered correctly', () => { | ||
const emailLink = card.find('a.text-link') | ||
expect(emailLink.exists()).toBeTruthy() | ||
expect(emailLink.attributes('href')).toBe('mailto:[email protected]') | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<template> | ||
<v-row justify="center" class="pa-sm-10 pa-4 pt-6 ma-0 h-100"> | ||
<v-col cols="auto"> | ||
<v-card class="highlight-top pa-4 mb-4 elevation-2" max-width="850"> | ||
<h2 class="mb-2 text-h5"> | ||
<v-icon class="mr-2" icon="mdi-shield-star" /> | ||
{{ $t("privacy_policy.title") }} | ||
</h2> | ||
<p class="text-body-1 mb-2"> | ||
{{ $t("privacy_policy.intro") }} | ||
</p> | ||
|
||
<h3 class="mb-2 text-h6"> | ||
{{ $t("privacy_policy.info_collected.title") }} | ||
</h3> | ||
<p class="text-body-1 mb-2"> | ||
{{ $t("privacy_policy.info_collected.content") }} | ||
</p> | ||
|
||
<h3 class="mb-2 text-h6"> | ||
{{ $t("privacy_policy.data_responsibility.title") }} | ||
</h3> | ||
<p class="text-body-1 mb-2"> | ||
{{ $t("privacy_policy.data_responsibility.content") }} | ||
</p> | ||
|
||
<h3 class="mb-2 text-h6"> | ||
{{ $t("privacy_policy.information_usage.title") }} | ||
</h3> | ||
<p class="text-body-1 mb-2"> | ||
{{ $t("privacy_policy.information_usage.content") }} | ||
</p> | ||
|
||
<h3 class="mb-2 text-h6"> | ||
{{ $t("privacy_policy.privacy_policy_changes.title") }} | ||
</h3> | ||
<p class="text-body-1 mb-2"> | ||
{{ $t("privacy_policy.privacy_policy_changes.content") }} | ||
</p> | ||
|
||
<h3 class="mb-2 text-h6"> | ||
{{ $t("privacy_policy.contact.title") }} | ||
</h3> | ||
<p class="text-body-1 mb-2"> | ||
{{ $t("privacy_policy.contact.content") }} | ||
<a class="text-link" href="mailto:[email protected]"> | ||
[email protected] | ||
</a> | ||
</p> | ||
</v-card> | ||
</v-col> | ||
</v-row> | ||
</template> |