|
1 | 1 | <!DOCTYPE html> |
2 | | -<html lang="es"> |
3 | | -<head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | | - <title>Dev2Forge</title> |
7 | | - <style> |
8 | | - body { |
9 | | - font-family: Arial, sans-serif; |
10 | | - text-align: center; |
11 | | - margin: 50px; |
12 | | - background-color: #f4f4f4; |
13 | | - } |
14 | | - h1 { |
15 | | - color: #333; |
16 | | - } |
17 | | - p { |
18 | | - font-size: 18px; |
19 | | - color: #666; |
20 | | - } |
21 | | - a.button { |
22 | | - display: inline-block; |
23 | | - padding: 10px 20px; |
24 | | - margin-top: 20px; |
25 | | - background-color: #007bff; |
26 | | - color: #fff; |
27 | | - text-decoration: none; |
28 | | - border-radius: 5px; |
29 | | - } |
30 | | - a.button:hover { |
31 | | - background-color: #0056b3; |
32 | | - } |
33 | | - </style> |
34 | | -</head> |
35 | | -<body> |
36 | | - <h1>Bienvenido a Dev2Forge</h1> |
37 | | - <p>Explora nuestros proyectos, herramientas y recursos para desarrolladores.</p> |
38 | | - <a class="button" href="https://github.com/dev2forge">Visitar GitHub</a> |
39 | | -</body> |
| 2 | +<html lang="en" class="dark"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>Dev2Forge Repos</title> |
| 7 | + <script src="https://cdn.tailwindcss.com"></script> |
| 8 | + <script type="module" src="./src/assets/js/main.js" defer></script> |
| 9 | + <link rel="stylesheet" href="./src/assets/css/index.css" /> |
| 10 | + <style></style> |
| 11 | + </head> |
| 12 | + <body class="bg-white dark:bg-gray-900 dark:text-gray-100 text-gray-800 transition-colors duration-300 min-h-screen flex flex-col dark"> |
| 13 | + <!-- Header --> |
| 14 | + <header class="w-full flex justify-between items-center p-6 flex-shrink-0"> |
| 15 | + <div class="w-full text-center"> |
| 16 | + <h1 class="text-3xl font-bold inline">Dev2Forge</h1> |
| 17 | + <sub class="text-sm inline"><small>org</small></sub> |
| 18 | + </div> |
| 19 | + <!-- Feature: Add "Toggle Theme" --> |
| 20 | + </header> |
| 21 | + |
| 22 | + <!-- Main Content --> |
| 23 | + <main class="flex-1 flex flex-col items-center w-full px-6 pb-12"> |
| 24 | + <!-- Description page --> |
| 25 | + <section id="description" class="my-4"></section> |
| 26 | + |
| 27 | + <!-- Repos --> |
| 28 | + <section id="carrusel-repos" class="h-full grid grid-rows-1 auto-cols-max grid-flow-col gap-4 overflow-x-auto overflow-y-hidden snap-x snap-mandatory w-full py-4"> |
| 29 | + <!-- Repos will be injected here --> |
| 30 | + </section> |
| 31 | + |
| 32 | + <hr class="border-gray-800 border-2 my-2 w-full" /> |
| 33 | + |
| 34 | + <!-- Followers Carousel --> |
| 35 | + <section id="followers" class="w-full flex flex-col items-center mx-auto mt-2"> |
| 36 | + <h2 class="block font-bold mb-5">Followers</h2> |
| 37 | + <div class="w-full flex justify-center"> |
| 38 | + <div class="flex items-center justify-center w-full max-w-xs"> |
| 39 | + <!-- Carousel container: Only profile pictures --> |
| 40 | + <div id="followers-container" class="flex mx-auto overflow-x-auto gap-2 snap-x snap-mandatory py-1 px-1 scrollbar-thin scrollbar-thumb-gray-300 dark:scrollbar-thumb-gray-700 w-full justify-center"> |
| 41 | + <!-- Followers will be injected here --> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + </section> |
| 46 | + </main> |
| 47 | + |
| 48 | + <!-- Footer --> |
| 49 | + <footer class="w-full mt-0 text-center flex-shrink-0 fixed bottom-0 left-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 py-2 z-10"> |
| 50 | + <p class="text-sm">© 2025 Dev2Forge. All rights reserved.</p> |
| 51 | + </footer> |
| 52 | + </body> |
40 | 53 | </html> |
0 commit comments