<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>ZansLab | Azan Bari</title>
  <link rel="stylesheet" href="style.css" />
</head>
<body>

<header>
  <h1>ZansLab</h1>
  <nav>
    <a href="#home">Home</a>
    <a href="#literature">Literature</a>
    <a href="#homelab">Homelab</a>
    <a href="#about">About</a>
    <a href="#contact">Contact</a>
  </nav>
</header>

<section id="home" class="hero">
  <h2>Hi, I'm Azan</h2>
  <p>English & ICS student. Builder. Editor. Homelab enthusiast.</p>
</section>

<section id="literature">
  <h2>Literature</h2>
  <p>My written work and creative pieces.</p>

  <div class="card">
    <h3>If I Were a Poet</h3>
    <a href="literature/poet-piece.pdf" target="_blank">Read PDF</a>
  </div>

  <!-- DUPLICATE THIS CARD FOR NEW PIECES -->
</section>

<section id="homelab">
  <h2>Homelab</h2>
  <p>Access my self hosted services.</p>

  <div class="card">
    <h3>Unraid Dashboard</h3>
    <a href="https://YOUR-UNRAID-URL" target="_blank">Open Server</a>
  </div>

  <p class="note">
    Note: Services may require VPN or Tailscale access.
  </p>
</section>

<section id="about">
  <h2>About</h2>
  <p>
    I am a UCD Arts student focused on English and Information Communication Studies.
    I build media projects and maintain a personal homelab.
  </p>
</section>

<section id="contact">
  <h2>Contact</h2>
  <p>Email: your@email.com</p>
</section>

<footer>
  <p>© 2026 ZansLab</p>
</footer>

</body>
</html>