Add 3 files
Browse files- README.md +7 -5
- index.html +94 -19
- prompts.txt +0 -0
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: vcbhhhh
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,94 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Jornal Oliveira</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
background-color: #121212;
|
| 10 |
+
color: #ffffff;
|
| 11 |
+
font-family: 'Arial', sans-serif;
|
| 12 |
+
margin: 0;
|
| 13 |
+
padding: 0;
|
| 14 |
+
display: flex;
|
| 15 |
+
align-items: center;
|
| 16 |
+
justify-content: center;
|
| 17 |
+
height: 100vh;
|
| 18 |
+
flex-direction: column;
|
| 19 |
+
text-align: center;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
h1 {
|
| 23 |
+
font-size: 3em;
|
| 24 |
+
color: #f5f5f5;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
p {
|
| 28 |
+
max-width: 600px;
|
| 29 |
+
margin: 10px auto;
|
| 30 |
+
font-size: 1.2em;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.highlight {
|
| 34 |
+
color: #00bfff;
|
| 35 |
+
font-weight: bold;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.buttons {
|
| 39 |
+
margin-top: 20px;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
.buttons a {
|
| 43 |
+
text-decoration: none;
|
| 44 |
+
color: #fff;
|
| 45 |
+
background-color: #333;
|
| 46 |
+
padding: 10px 20px;
|
| 47 |
+
border-radius: 8px;
|
| 48 |
+
margin: 5px;
|
| 49 |
+
display: inline-block;
|
| 50 |
+
transition: background-color 0.3s;
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.buttons a:hover {
|
| 54 |
+
background-color: #00bfff;
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
.suggestion {
|
| 58 |
+
background-color: #1e1e1e;
|
| 59 |
+
padding: 20px;
|
| 60 |
+
border-radius: 10px;
|
| 61 |
+
margin-top: 30px;
|
| 62 |
+
max-width: 600px;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.footer {
|
| 66 |
+
margin-top: 20px;
|
| 67 |
+
font-size: 0.9em;
|
| 68 |
+
color: #888;
|
| 69 |
+
}
|
| 70 |
+
</style>
|
| 71 |
+
</head>
|
| 72 |
+
<body>
|
| 73 |
+
|
| 74 |
+
<h1>📰 Jornal Oliveira</h1>
|
| 75 |
+
<p>Bem-vindo ao <strong>Jornal Oliveira</strong>! Estamos construindo nosso novo site para oferecer a você uma experiência incrível, com notícias, informações e muito mais.</p>
|
| 76 |
+
<p>⏳ <strong>Nosso site está em desenvolvimento.</strong></p>
|
| 77 |
+
<p>📅 <strong>Lançamento oficial:</strong> <span class="highlight">16 de junho de 2025</span></p>
|
| 78 |
+
|
| 79 |
+
<div class="buttons">
|
| 80 |
+
<a href="https://www.instagram.com/jornal_oliveira" target="_blank">💬 Instagram</a>
|
| 81 |
+
<a href="https://wa.me/5511981722855" target="_blank">📱 WhatsApp</a>
|
| 82 |
+
</div>
|
| 83 |
+
|
| 84 |
+
<div class="suggestion">
|
| 85 |
+
<p><strong>✍️ Quer mandar uma sugestão para o site ou para o Jornal?</strong></p>
|
| 86 |
+
<p>Mande uma mensagem pelo WhatsApp, pelo Instagram ou aguarde até o dia <strong>01/06</strong> para comentar aqui mesmo!</p>
|
| 87 |
+
</div>
|
| 88 |
+
|
| 89 |
+
<div class="footer">
|
| 90 |
+
© 2025 Jornal Oliveira. Todos os direitos reservados.
|
| 91 |
+
</div>
|
| 92 |
+
|
| 93 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Rwhehhehe/vcbhhhh" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 94 |
+
</html>
|
prompts.txt
ADDED
|
File without changes
|