🚀 Initial commit - PDIMaker v1.0.0

Sistema completo de gestão de PDI com:
- Autenticação com email/senha e Google OAuth
- Workspaces privados isolados
- Sistema de convites com código único
- Interface profissional com Next.js 14
- Backend NestJS com PostgreSQL
- Docker com Nginx e SSL

Desenvolvido por Sergio Correa
This commit is contained in:
2025-11-19 02:09:04 +00:00
commit 0524656198
58 changed files with 6660 additions and 0 deletions

30
frontend/public/test.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Teste de Imagem</title>
<style>
body { margin: 0; padding: 20px; }
img { max-width: 100%; border: 2px solid red; }
.bg-test {
width: 100%;
height: 400px;
background-image: url('/pdimaker-background.jpg');
background-size: cover;
background-position: center;
border: 2px solid blue;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Teste de Carregamento da Imagem</h1>
<h2>Método 1: Tag IMG</h2>
<img src="/pdimaker-background.jpg" alt="Background" />
<h2>Método 2: Background CSS</h2>
<div class="bg-test"></div>
<h2>Informações:</h2>
<p>URL da imagem: <a href="/pdimaker-background.jpg" target="_blank">/pdimaker-background.jpg</a></p>
</body>
</html>