diff --git a/scripts/check.mjs b/scripts/check.mjs
index 80fd729..3d78eb7 100644
--- a/scripts/check.mjs
+++ b/scripts/check.mjs
@@ -119,6 +119,17 @@ for (const value of [
assert(html.includes(value), value);
}
assert.equal((html.match(/data-here-now-credit/g) || []).length, 2);
+for (const page of [html, learnHtml, agentHtml]) {
+ const brandPosition = page.indexOf('class="brand-lockup"');
+ const creditPosition = page.indexOf(
+ 'class="here-now-credit here-now-credit--header"',
+ );
+ const navPosition = page.indexOf('class="site-nav"');
+ assert(brandPosition < creditPosition && creditPosition < navPosition);
+}
+assert(
+ css.includes("grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);"),
+);
assert(learnHtml.includes("How agent loops work"));
assert(agentHtml.includes("For AI agents"));
assert(css.includes(".loop-row"));
diff --git a/site/agents/index.html b/site/agents/index.html
index 88498da..64a4d67 100644
--- a/site/agents/index.html
+++ b/site/agents/index.html
@@ -110,6 +110,26 @@
Loop Library
+
+