|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | | - <title>JS Master - Bernardo</title> |
| 6 | + <title>JS Master - Prof. Bernardo</title> |
7 | 7 | <link rel="stylesheet" href="style.css"> |
8 | 8 | </head> |
9 | 9 | <body> |
10 | 10 |
|
11 | 11 | <nav class="navbar"> |
12 | 12 | <div class="logo">JS<span>Master</span></div> |
13 | | - <ul class="nav-links"> |
| 13 | + <ul> |
14 | 14 | <li><a href="index.html">Início</a></li> |
15 | | - <li><a href="https://discord.com/channels/1499755355570176081/1499755770991083570" target="_blank" class="comunidade-link">Comunidade</a></li> |
| 15 | + <li><a href="aulas.html">Aulas</a></li> |
| 16 | + <li><a href="praticas.html">Práticas</a></li> |
| 17 | + <li><a href="https://discord.com/channels/1499755355570176081/1499755770991083570" target="_blank" class="btn-comunidade">Comunidade</a></li> |
16 | 18 | <li><button id="theme-button" class="theme-switch">Trocar Tema</button></li> |
17 | 19 | </ul> |
18 | 20 | </nav> |
19 | 21 |
|
20 | 22 | <header class="hero"> |
21 | 23 | <h1>Laboratório <span>Bernardo</span></h1> |
22 | | - <p>Aprenda JavaScript com as cores que você escolheu.</p> |
| 24 | + <p>Aprenda JavaScript com Estilo e Prática.</p> |
23 | 25 | </header> |
24 | 26 |
|
25 | 27 | <main class="container"> |
26 | 28 | <div id="tutorial-texto"></div> |
27 | 29 |
|
28 | 30 | <section class="card"> |
29 | | - <h2>Desafios Práticos</h2> |
30 | | - <p>Clique abaixo para abrir o editor interativo:</p> |
31 | | - <div style="display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;"> |
| 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;"> |
32 | 34 | <button onclick="verAula(1)" class="btn-primary">Nível 1: Variáveis</button> |
33 | 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> |
34 | 37 | </div> |
35 | 38 | </section> |
36 | 39 | </main> |
|
0 commit comments