Role para mais
Componente Reutilizável

Use a assinatura no seu projeto

Importe o componente <vezetiv-signature> em qualquer site ou aplicação. Sem dependências, sem framework — funciona em tudo.

1

Importe

Adicione o script no seu HTML. O componente se registra automaticamente.

2

Use

Coloque a tag onde quiser. Configure com atributos opcionais.

3

Pronto

A assinatura aparece com ícone, texto e link automático. Zero configuração.

Passo 1 — Importar o componente
<!-- Adicione no <head> ou antes do </body> -->
<script src="https://ecossistema.vezetiv.dev/components/vezetiv-signature/vezetiv-signature.js"></script>
Passo 2 — Usar no HTML
<!-- Uso básico (tema escuro, tamanho médio) -->
<vezetiv-signature></vezetiv-signature>

<!-- Com opções personalizadas -->
<vezetiv-signature
  theme="light"
  size="lg"
  href="https://links.vezetiv.dev"
  target="_blank"
></vezetiv-signature>
Exemplo completo — Copie e cole
<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Meu Projeto</title>
  <!-- Importar o componente -->
  <script src="https://ecossistema.vezetiv.dev/components/vezetiv-signature/vezetiv-signature.js"></script>
</head>
<body>

  <!-- Sua assinatura -->
  <vezetiv-signature></vezetiv-signature>

</body>
</html>