🚀 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:
BIN
frontend/public/pdimaker-background.jpg
Normal file
BIN
frontend/public/pdimaker-background.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.9 MiB |
30
frontend/public/test.html
Normal file
30
frontend/public/test.html
Normal 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>
|
||||
Reference in New Issue
Block a user