|
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | 6 | <title>JS Master - Prof. Bernardo</title> |
| 7 | + |
| 8 | + <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 9 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 10 | + <link href="https://fonts.googleapis.com/css2?family=Playwrite+IE+Sj:wght@100..400&display=swap" rel="stylesheet"> |
| 11 | + |
7 | 12 | <link rel="stylesheet" href="style.css"> |
8 | 13 | </head> |
9 | 14 | <body> |
|
15 | 20 | <li><a href="aulas.html">Aulas</a></li> |
16 | 21 | <li><a href="praticas.html">Práticas</a></li> |
17 | 22 | <li><a href="https://discord.com/channels/1499755355570176081/1499755770991083570" target="_blank" class="btn-comunidade">Comunidade</a></li> |
18 | | - <li><button id="theme-button" class="theme-switch">Trocar Tema</button></li> |
19 | 23 | </ul> |
20 | 24 | </nav> |
21 | 25 |
|
22 | 26 | <header class="hero"> |
23 | | - <h1>Laboratório <span>Bernardo</span></h1> |
24 | | - <p>Aprenda JavaScript com Estilo e Prática.</p> |
| 27 | + <h1>Domine o <span>JavaScript</span> do zero com o prof. Bernardo.</h1> |
| 28 | + <p>Aprenda programação de um jeito simples, prático e interativo.</p> |
| 29 | + <div style="margin-top: 20px;"> |
| 30 | + <button class="btn-primary" onclick="window.location.href='aulas.html'">Começar a Estudar</button> |
| 31 | + </div> |
25 | 32 | </header> |
26 | 33 |
|
27 | 34 | <main class="container"> |
28 | | - <div id="tutorial-texto"></div> |
29 | | - |
30 | | - <section class="card"> |
31 | | - <h2>Desafios de Código</h2> |
32 | | - <p>Selecione um nível para abrir o laboratório:</p> |
33 | | - <div style="display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;"> |
34 | | - <button onclick="verAula(1)" class="btn-primary">Nível 1: Variáveis</button> |
35 | | - <button onclick="verAula(2)" class="btn-primary">Nível 2: Funções</button> |
36 | | - <button onclick="verAula(3)" class="btn-primary">Nível 3: Lógica</button> |
37 | | - </div> |
| 35 | + |
| 36 | + <section class="card" style="text-align: center; margin-bottom: 40px;"> |
| 37 | + <h2 style="font-family: 'Playwrite IE Sj', cursive; color: var(--js-yellow);">Bem-vindo ao Portal</h2> |
| 38 | + <p>Este é o seu espaço para dominar a linguagem que move a internet. Navegue pelas aulas teóricas ou vá direto para o nosso laboratório praticar!</p> |
38 | 39 | </section> |
| 40 | + |
| 41 | + <div class="cards-container"> |
| 42 | + <div class="card"> |
| 43 | + <span class="badge">Teoria</span> |
| 44 | + <h3>Aulas Explicativas</h3> |
| 45 | + <p>Conteúdo detalhado sobre variáveis, funções e lógica de programação.</p> |
| 46 | + <button onclick="window.location.href='aulas.html'" class="btn-lesson">Ver Aulas</button> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div class="card"> |
| 50 | + <span class="badge">Mão na Massa</span> |
| 51 | + <h3>Laboratório JS</h3> |
| 52 | + <p>Um editor de código interativo para você testar seus conhecimentos agora.</p> |
| 53 | + <button onclick="window.location.href='praticas.html'" class="btn-lesson">Ir para Práticas</button> |
| 54 | + </div> |
| 55 | + |
| 56 | + <div class="card"> |
| 57 | + <span class="badge">Networking</span> |
| 58 | + <h3>Comunidade</h3> |
| 59 | + <p>Tire suas dúvidas e interaja com outros alunos no nosso Discord.</p> |
| 60 | + <button onclick="window.location.href='https://discord.com/channels/1499755355570176081/1499755770991083570'" class="btn-lesson" style="background:#5865F2;">Abrir Discord</button> |
| 61 | + </div> |
| 62 | + </div> |
39 | 63 | </main> |
40 | 64 |
|
| 65 | + <footer style="text-align: center; padding: 40px; color: var(--js-yellow); opacity: 0.8; font-size: 0.9rem;"> |
| 66 | + © 2026 JS Master - Criado por Prof. Bernardo. |
| 67 | + </footer> |
| 68 | + |
41 | 69 | <script src="script.js"></script> |
| 70 | + |
42 | 71 | </body> |
43 | 72 | </html> |
0 commit comments