|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>Neocle - Projects</title> |
| 7 | + <link rel="icon" href="https://neocle.me/uploads/favicon.png" /> |
| 8 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" /> |
| 9 | + <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet" /> |
| 10 | + <link rel="stylesheet" href="css/styles.css" /> |
| 11 | + <script src="js/loading-animation.js"></script> |
| 12 | + <style> |
| 13 | + .projects-section { |
| 14 | + display: flex; |
| 15 | + flex-direction: column; |
| 16 | + gap: 2rem; |
| 17 | + margin-bottom: 3rem; |
| 18 | + } |
| 19 | + |
| 20 | + .project-card { |
| 21 | + background: rgba(255, 255, 255, 0.05); |
| 22 | + padding: 1.5rem; |
| 23 | + border-radius: 16px; |
| 24 | + border: 1px solid rgba(255, 255, 255, 0.1); |
| 25 | + transition: transform 0.3s ease, box-shadow 0.3s ease; |
| 26 | + animation: fadeInUp 0.6s ease both; |
| 27 | + display: flex; |
| 28 | + align-items: center; |
| 29 | + gap: 1.5rem; |
| 30 | + } |
| 31 | + |
| 32 | + .project-img { |
| 33 | + width: 120px; |
| 34 | + height: 120px; |
| 35 | + object-fit: cover; |
| 36 | + border-radius: 12px; |
| 37 | + flex-shrink: 0; |
| 38 | + box-shadow: 0 0 12px rgba(255, 255, 255, 0.1); |
| 39 | + } |
| 40 | + |
| 41 | + .project-card:hover { |
| 42 | + transform: translateY(-5px); |
| 43 | + box-shadow: 0 0 20px rgba(131, 193, 223, 0.2); |
| 44 | + } |
| 45 | + |
| 46 | + .project-title { |
| 47 | + font-size: 1.5rem; |
| 48 | + font-weight: 600; |
| 49 | + margin-bottom: 0.5rem; |
| 50 | + } |
| 51 | + |
| 52 | + .project-desc { |
| 53 | + font-size: 1rem; |
| 54 | + color: rgba(255, 255, 255, 0.8); |
| 55 | + } |
| 56 | + |
| 57 | + @keyframes fadeInUp { |
| 58 | + from { |
| 59 | + opacity: 0; |
| 60 | + transform: translateY(20px); |
| 61 | + } |
| 62 | + to { |
| 63 | + opacity: 1; |
| 64 | + transform: translateY(0); |
| 65 | + } |
| 66 | + } |
| 67 | + </style> |
| 68 | +</head> |
| 69 | +<body> |
| 70 | + <div class="wrapper"> |
| 71 | + <main class="container"> |
| 72 | + <section class="header"> |
| 73 | + <h1 class="main-title">My Projects</h1> |
| 74 | + <p class="subtitle">A showcase of things I've built or contributed to.</p> |
| 75 | + </section> |
| 76 | + |
| 77 | + <div class="navbar"> |
| 78 | + <a href="/"><i class="fa-solid fa-house navbar-icons"></i>Home</a> |
| 79 | + <a href="/about"><i class="fa-solid fa-address-card navbar-icons"></i>About</a> |
| 80 | + <a href="/projects.html"><i class="fa-solid fa-diagram-project navbar-icons"></i>Projects</a> |
| 81 | + <a href="/contact"><i class="fa-solid fa-message navbar-icons"></i>Contact</a> |
| 82 | + <a href="/"><i class="fa-solid fa-question navbar-icons"></i>Soon...</a> |
| 83 | + </div> |
| 84 | + |
| 85 | + <section class="projects-section"> |
| 86 | + <div class="project-card"> |
| 87 | + <img src="images/project1.jpg" alt="Project One" class="project-img"> |
| 88 | + <div class="project-info"> |
| 89 | + <h2 class="project-title">Project One</h2> |
| 90 | + <p class="project-desc">A cool project I made using HTML, CSS, and JavaScript. It does amazing things!</p> |
| 91 | + </div> |
| 92 | + </div> |
| 93 | + |
| 94 | + <div class="project-card"> |
| 95 | + <img src="images/project2.jpg" alt="Project Two" class="project-img"> |
| 96 | + <div class="project-info"> |
| 97 | + <h2 class="project-title">Project Two</h2> |
| 98 | + <p class="project-desc">This one is a game prototype using Unity. It's still in progress but looks promising.</p> |
| 99 | + </div> |
| 100 | + </div> |
| 101 | + |
| 102 | + <div class="project-card"> |
| 103 | + <img src="images/project3.jpg" alt="Open Source" class="project-img"> |
| 104 | + <div class="project-info"> |
| 105 | + <h2 class="project-title">Open Source Contribution</h2> |
| 106 | + <p class="project-desc">I contributed to an open-source tool on GitHub, fixing bugs and improving performance.</p> |
| 107 | + </div> |
| 108 | + </div> |
| 109 | + </section> |
| 110 | + |
| 111 | + <section class="socials"> |
| 112 | + <a href="https://discordapp.com/users/515958203838627856/" class="icon"><i class="fab fa-discord"></i></a> |
| 113 | + <a href="https://www.youtube.com/channel/UCuJroY6sbleZrTz7N0xyWbA" class="icon"><i class="fab fa-youtube"></i></a> |
| 114 | + <a href="https://www.tiktok.com/@neocle_" class="icon"><i class="fab fa-tiktok"></i></a> |
| 115 | + <a href="https://www.instagram.com/neocle_/" class="icon"><i class="fab fa-instagram"></i></a> |
| 116 | + <a href="https://github.com/Neocle" class="icon"><i class="fab fa-github"></i></a> |
| 117 | + </section> |
| 118 | + </main> |
| 119 | + </div> |
| 120 | + |
| 121 | + <footer class="footer"> |
| 122 | + <p>© 2025 Neocle. All rights reserved.</p> |
| 123 | + </footer> |
| 124 | + <script src="js/navbar-highlight.js"></script> |
| 125 | +</body> |
| 126 | +</html> |
0 commit comments