Skip to content

Commit 1af6fba

Browse files
committed
Adiciona a pasta de build para o GitHub Pages
1 parent 20ecaa2 commit 1af6fba

File tree

11 files changed

+401
-1
lines changed

11 files changed

+401
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ pnpm-debug.log*
88
lerna-debug.log*
99

1010
node_modules
11-
dist
1211
dist-ssr
1312
*.local
1413

dist/404.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-BR">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>CyberVault - Redirecionando...</title>
7+
<style>
8+
body {
9+
margin: 0;
10+
padding: 0;
11+
background: #0a0a0a;
12+
color: #00ff00;
13+
font-family: monospace;
14+
display: flex;
15+
justify-content: center;
16+
align-items: center;
17+
height: 100vh;
18+
}
19+
.loader {
20+
border: 2px solid #00ff00;
21+
border-top: 2px solid transparent;
22+
border-radius: 50%;
23+
width: 40px;
24+
height: 40px;
25+
animation: spin 1s linear infinite;
26+
margin-bottom: 20px;
27+
}
28+
@keyframes spin {
29+
0% { transform: rotate(0deg); }
30+
100% { transform: rotate(360deg); }
31+
}
32+
.container {
33+
text-align: center;
34+
}
35+
</style>
36+
</head>
37+
<body>
38+
<div class="container">
39+
<div class="loader"></div>
40+
<p>Redirecionando para CyberVault...</p>
41+
</div>
42+
<script>
43+
// Redireciona para a página inicial do SPA
44+
window.location.href = '/cybervault/';
45+
</script>
46+
</body>
47+
</html>

dist/_redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Redirects para SPA no GitHub Pages
2+
/* /index.html 200

dist/assets/index--_lotYqm.js

Lines changed: 191 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/index-B7iYOTJm.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/supabase-BiRplkk6.js

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/ui-DcoPr3bT.js

Lines changed: 53 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/vendor-BZF0HjbR.js

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!doctype html>
2+
<html lang="pt-BR">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>CyberVault - Gerenciador de Senhas Ultra Seguro</title>
7+
<meta name="description" content="Sistema avançado de gerenciamento de senhas com criptografia militar. Interface cyberpunk, máxima segurança e controle total sobre suas credenciais." />
8+
<meta name="author" content="Matheus Fernandes" />
9+
<meta name="keywords" content="gerenciador senhas, criptografia, segurança digital, cyberpunk, hacker" />
10+
<link rel="canonical" href="https://matheusfernandes.github.io/cybervault/" />
11+
12+
<!-- Open Graph / Facebook -->
13+
<meta property="og:type" content="website" />
14+
<meta property="og:url" content="https://matheusfernandes.github.io/cybervault/" />
15+
<meta property="og:title" content="CyberVault - Gerenciador de Senhas Ultra Seguro" />
16+
<meta property="og:description" content="Sistema avançado de gerenciamento de senhas com criptografia militar e interface cyberpunk." />
17+
<meta property="og:image" content="https://matheusfernandes.github.io/cybervault/og-image.jpg" />
18+
19+
<!-- Twitter -->
20+
<meta property="twitter:card" content="summary_large_image" />
21+
<meta property="twitter:url" content="https://matheusfernandes.github.io/cybervault/" />
22+
<meta property="twitter:title" content="CyberVault - Gerenciador de Senhas Ultra Seguro" />
23+
<meta property="twitter:description" content="Sistema avançado de gerenciamento de senhas com criptografia militar." />
24+
<meta property="twitter:image" content="https://matheusfernandes.github.io/cybervault/og-image.jpg" />
25+
<script type="module" crossorigin src="/CyberVault/assets/index--_lotYqm.js"></script>
26+
<link rel="modulepreload" crossorigin href="/CyberVault/assets/vendor-BZF0HjbR.js">
27+
<link rel="modulepreload" crossorigin href="/CyberVault/assets/ui-DcoPr3bT.js">
28+
<link rel="modulepreload" crossorigin href="/CyberVault/assets/supabase-BiRplkk6.js">
29+
<link rel="stylesheet" crossorigin href="/CyberVault/assets/index-B7iYOTJm.css">
30+
</head>
31+
32+
<body>
33+
<div id="root"></div>
34+
</body>
35+
</html>

dist/placeholder.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)