Index: src/views/pages/hub-home.ejs
===================================================================
--- src/views/pages/hub-home.ejs	(revision bf61be79c5c52ac6251edc4cb25feaba05e01f1f)
+++ src/views/pages/hub-home.ejs	(revision bf61be79c5c52ac6251edc4cb25feaba05e01f1f)
@@ -0,0 +1,104 @@
+<div class="container hub-home">
+
+  <header class="hub-hero">
+    <h1><%= company ? company.title : 'Overzicht' %></h1>
+    <% if (company && (company.tagline || company.description)) { %>
+      <p class="hub-hero-sub"><%= company.tagline || company.description %></p>
+    <% } %>
+  </header>
+
+  <%# ── Laatste posts van alle gebruikers ─────────────────────────── %>
+  <section class="hub-section">
+    <h2 class="hub-h2">Laatste posts</h2>
+    <% if (posts && posts.length) { %>
+      <div class="hub-grid">
+        <% posts.forEach(function(p) { %>
+          <a class="hub-card" href="/user/<%= p.site_slug %>/<%= p.slug %>">
+            <% if (p.cover_image_url) { %>
+              <span class="hub-card-cover" style="background-image:url('<%= p.cover_image_url %>')"></span>
+            <% } %>
+            <span class="hub-card-body">
+              <span class="hub-card-title"><%= p.title %></span>
+              <% if (p.excerpt) { %><span class="hub-card-excerpt"><%= p.excerpt %></span><% } %>
+              <span class="hub-card-meta">
+                <%= p.site_title %><% if (p.published_at || p.created_at) { %> · <%= formatDate(p.published_at || p.created_at) %><% } %>
+              </span>
+            </span>
+          </a>
+        <% }); %>
+      </div>
+    <% } else { %>
+      <p class="hub-empty">Nog geen posts.</p>
+    <% } %>
+  </section>
+
+  <%# ── PrutFolio's (gebruikers) ───────────────────────────────────── %>
+  <section class="hub-section">
+    <h2 class="hub-h2">PrutFolio's</h2>
+    <% if (sites && sites.length) { %>
+      <ul class="hub-users">
+        <% sites.forEach(function(s) { %>
+          <li>
+            <a class="hub-user" href="/user/<%= s.slug %>">
+              <span class="hub-user-avatar">
+                <% if (s.profile_photo) { %>
+                  <img src="<%= s.profile_photo %>" alt="">
+                <% } else { %>
+                  <span><%= (s.title || s.slug).charAt(0).toUpperCase() %></span>
+                <% } %>
+              </span>
+              <span class="hub-user-meta">
+                <span class="hub-user-name"><%= s.title %></span>
+                <span class="hub-user-sub"><%= s.post_count %> post<%= s.post_count === 1 ? '' : 's' %></span>
+              </span>
+            </a>
+          </li>
+        <% }); %>
+      </ul>
+    <% } else { %>
+      <p class="hub-empty">Nog geen gebruikers.</p>
+    <% } %>
+  </section>
+
+</div>
+
+<style>
+.hub-home { max-width: 1040px; margin: 2rem auto 4rem; padding: 0 1rem; }
+.hub-hero { text-align: center; padding: 1.5rem 0 2rem; border-bottom: 1px solid var(--rule); margin-bottom: 2rem; }
+.hub-hero h1 { font-family: var(--font-display, serif); font-size: 2.4rem; margin: 0 0 0.4rem; }
+.hub-hero-sub { color: var(--ink-muted); font-size: 1.05rem; margin: 0; }
+
+.hub-section { margin-bottom: 2.5rem; }
+.hub-h2 { font-family: var(--font-display, serif); font-size: 1.3rem; margin: 0 0 1rem; }
+
+.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
+.hub-card {
+  display: flex; flex-direction: column;
+  border: 1px solid var(--rule); border-radius: 10px; overflow: hidden;
+  background: var(--paper-2); color: var(--ink); text-decoration: none;
+  transition: border-color 120ms, transform 120ms;
+}
+.hub-card:hover { border-color: var(--accent); transform: translateY(-2px); }
+.hub-card-cover { display: block; height: 130px; background-size: cover; background-position: center; background-color: var(--paper); }
+.hub-card-body { display: flex; flex-direction: column; gap: 0.35rem; padding: 0.85rem 1rem; }
+.hub-card-title { font-weight: 600; font-size: 1.02rem; line-height: 1.25; }
+.hub-card-excerpt { color: var(--ink-muted); font-size: 0.88rem; line-height: 1.4;
+  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
+.hub-card-meta { color: var(--ink-muted); font-size: 0.78rem; margin-top: 0.1rem; }
+
+.hub-users { list-style: none; padding: 0; margin: 0;
+  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.6rem; }
+.hub-user { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.8rem;
+  border: 1px solid var(--rule); border-radius: 10px; background: var(--paper-2);
+  color: var(--ink); text-decoration: none; transition: border-color 120ms; }
+.hub-user:hover { border-color: var(--accent); }
+.hub-user-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
+  background: var(--paper); color: var(--accent); display: inline-flex; align-items: center; justify-content: center;
+  font-family: var(--font-display, serif); font-weight: 600; }
+.hub-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
+.hub-user-meta { display: flex; flex-direction: column; min-width: 0; }
+.hub-user-name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
+.hub-user-sub { color: var(--ink-muted); font-size: 0.8rem; }
+
+.hub-empty { color: var(--ink-muted); }
+</style>
