@sprintup-cms/sdk 1.8.55 → 1.8.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -263,7 +263,7 @@ function createCMSClient(options) {
263
263
  try {
264
264
  const res = await fetch(`${baseUrl}/api/v1/${appId}/globals`, {
265
265
  headers: headers(),
266
- next: { revalidate: 300, tags: [`cms-globals-${appId}`] }
266
+ next: { revalidate: 60, tags: [`cms-globals-${appId}`] }
267
267
  });
268
268
  if (!res.ok) {
269
269
  const [navPages, footerPages] = await Promise.all([
@@ -1154,16 +1154,14 @@ function parseNavItems(html) {
1154
1154
  });
1155
1155
  }
1156
1156
  function CMSHeader({ nav }) {
1157
- console.log("[v0] CMSHeader nav:", JSON.stringify(nav, null, 2));
1158
1157
  if (!nav) return null;
1159
- const structuredBlock = nav.blocks?.[0]?.type === "__structured__" ? nav.blocks[0].content : null;
1160
- console.log("[v0] CMSHeader sectionData:", nav.sectionData, "structuredBlock:", structuredBlock);
1161
- const primary = nav.sectionData?.primary ?? structuredBlock?.primary ?? {};
1162
- console.log("[v0] CMSHeader primary:", primary);
1158
+ const structuredBlock = Array.isArray(nav.blocks) && nav.blocks[0]?.type === "__structured__" ? nav.blocks[0].content : null;
1159
+ const sd = nav.sectionData ?? structuredBlock;
1160
+ if (!sd) return null;
1161
+ const primary = sd.primary ?? {};
1163
1162
  const navItems = parseNavItems(primary.nav_items || "");
1164
1163
  const logoUrl = primary.logo_url || "";
1165
1164
  const logoAlt = primary.logo_alt || "";
1166
- console.log("[v0] CMSHeader logoUrl:", logoUrl, "logoAlt:", logoAlt, "navItems:", navItems);
1167
1165
  if (!logoUrl && !logoAlt && navItems.length === 0) return null;
1168
1166
  return /* @__PURE__ */ jsx("header", { className: "w-full border-b border-border bg-background/95 backdrop-blur sticky top-0 z-50", children: /* @__PURE__ */ jsxs("div", { className: "max-w-6xl mx-auto px-4 h-16 flex items-center justify-between gap-4", children: [
1169
1167
  /* @__PURE__ */ jsxs("a", { href: "/", className: "flex items-center gap-2 shrink-0", children: [
@@ -1201,11 +1199,10 @@ function parseLegalLinks(html) {
1201
1199
  });
1202
1200
  }
1203
1201
  function CMSFooter({ footer }) {
1204
- console.log("[v0] CMSFooter footer:", JSON.stringify(footer, null, 2));
1205
1202
  if (!footer) return null;
1206
- const structuredBlock = footer.blocks?.[0]?.type === "__structured__" ? footer.blocks[0].content : null;
1207
- console.log("[v0] CMSFooter sectionData:", footer.sectionData, "structuredBlock:", structuredBlock);
1208
- const sd = footer.sectionData ?? structuredBlock ?? {};
1203
+ const structuredBlock = Array.isArray(footer.blocks) && footer.blocks[0]?.type === "__structured__" ? footer.blocks[0].content : null;
1204
+ const sd = footer.sectionData ?? structuredBlock;
1205
+ if (!sd) return null;
1209
1206
  const c = sd.content ?? {};
1210
1207
  const contact = sd.contact ?? {};
1211
1208
  const social = sd.social ?? {};