File size: 32,240 Bytes
dd51a37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Jornal Oliveira</title>
                <style>
                        body {
                                    background-color: #121212;
                                                color: #ffffff;
                                                            font-family: 'Arial', sans-serif;
                                                                        margin: 0;
                                                                                    padding: 0;
                                                                                                display: flex;
                                                                                                            align-items: center;
                                                                                                                        justify-content: center;
                                                                                                                                    height: 100vh;
                                                                                                                                                flex-direction: column;
                                                                                                                                                            text-align: center;
                                                                                                                                                                    }

                                                                                                                                                                            h1 {
                                                                                                                                                                                        font-size: 3em;
                                                                                                                                                                                                    color: #f5f5f5;
                                                                                                                                                                                                            }

                                                                                                                                                                                                                    p {
                                                                                                                                                                                                                                max-width: 600px;
                                                                                                                                                                                                                                            margin: 10px auto;
                                                                                                                                                                                                                                                        font-size: 1.2em;
                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                        .highlight {
                                                                                                                                                                                                                                                                                    color: #00bfff;
                                                                                                                                                                                                                                                                                                font-weight: bold;
                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                .buttons {
                                                                                                                                                                                                                                                                                                                            margin-top: 20px;
                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                            .buttons a {
                                                                                                                                                                                                                                                                                                                                                        text-decoration: none;
                                                                                                                                                                                                                                                                                                                                                                    color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                background-color: #333;
                                                                                                                                                                                                                                                                                                                                                                                            padding: 10px 20px;
                                                                                                                                                                                                                                                                                                                                                                                                        border-radius: 8px;
                                                                                                                                                                                                                                                                                                                                                                                                                    margin: 5px;
                                                                                                                                                                                                                                                                                                                                                                                                                                display: inline-block;
                                                                                                                                                                                                                                                                                                                                                                                                                                            transition: background-color 0.3s;
                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                            .buttons a:hover {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        background-color: #00bfff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .suggestion {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    background-color: #1e1e1e;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                padding: 20px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            border-radius: 10px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        margin-top: 30px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    max-width: 600px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .footer {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                margin-top: 20px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            font-size: 0.9em;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        color: #888;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </style>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </head>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <body>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <h1>📰 Jornal Oliveira</h1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <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>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <p><strong>Nosso site está em desenvolvimento.</strong></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <p>📅 <strong>Lançamento oficial:</strong> <span class="highlight">16 de junho de 2025</span></p>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <div class="buttons">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <a href="https://www.instagram.com/jornal_oliveira" target="_blank">💬 Instagram</a>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <a href="https://wa.me/5511981722855" target="_blank">📱 WhatsApp</a>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </div>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <div class="suggestion">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <p><strong>✍️ Quer mandar uma sugestão para o site ou para o Jornal?</strong></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <p>Mande uma mensagem pelo WhatsApp, pelo Instagram ou aguarde até o dia <strong>01/06</strong> para comentar aqui mesmo!</p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </div>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <div class="footer">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                &copy; 2025 Jornal Oliveira. Todos os direitos reservados.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </div>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <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>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    </html>