-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (77 loc) · 2.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Diagrama Mermaid</title>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
</script>
</head>
<body>
<div class="mermaid">
graph TD
style auth fill:#aef6f7
style recibos fill:#fdff6e
style condominios fill:#fdff6e
style condominos fill:#fdff6e
style notifications fill:#aef6f7
style comodidades fill:#fdff6e
style apps-middle fill:#cccccc
style gdp fill:#97f07b
style repp fill:#fdff6e
style acordos fill:#97f07b
style despesas fill:#97f07b
style resin fill:#97f07b
style ppc fill:#97f07b
style reserva fill:#97f07b
style nps fill:#f7aebc
style portal-sindico fill:#f7aebc
style portaria fill:#f7aebc
style resolva-facil fill:#f7aebc
style vox fill:#fdff6e
style reuniao fill:#fdff6e
style appmorar fill:#8f8
style appsindico fill:#8f8
style appcolaborador fill:#8f8
style apps fill:#97f07b
style PortalSindico fill:#8d9eef
auth[auth]
recibos[recibos]
condominios[condominios]
condominos[condominos]
notifications[notifications]
comodidades[comodidades]
apps-middle[apps-middle]
gdp[gdp] --> repp[repp]
acordos[acordos]
despesas[despesas]
resin[resin]
ppc[ppc]
reserva[reserva]
nps[nps]
portal-sindico[portal-sindico]
portaria[portaria]
resolva-facil[resolva-facil]
vox[vox]
reunião[reunião]
appmorar[appmorar] --> apps[apps]
appsindico[appsindico] --> apps[apps]
appcolaborador[appcolaborador] --> apps[apps]
apps --> auth
apps --> recibos
apps --> condominios
apps --> condominos
apps --> notifications
apps --> comodidades
apps --> gdp
apps --> acordos
apps --> despesas
apps --> ppc
apps --> reserva
PortalSindico[PortalSindico] --> portal-sindico
PortalSindico --> auth
</div>
</body>
</html>