<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title><%= title %></title>
  <link rel="stylesheet" href="/css/tailwind/style.css" />
  <link rel="stylesheet" href="/css/main.css" />
  <link rel="shortcut icon" href="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/express/express-original.svg" type="image/x-icon">
</head>

<body class="bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900 text-white min-h-screen flex flex-col">

  <!-- Header -->
  <%- include('../partials/header') %>

  <!-- Main Content -->
  <main class="flex-1 px-4 py-12">
    <%- body %>
  </main>

  <!-- Footer -->
  <%- include('../partials/footer') %>

</body>

</html>