diff --git a/apps/sim/app/(landing)/blog/page.tsx b/apps/sim/app/(landing)/blog/page.tsx index 64c290dfb2c..b81d2233d29 100644 --- a/apps/sim/app/(landing)/blog/page.tsx +++ b/apps/sim/app/(landing)/blog/page.tsx @@ -5,6 +5,7 @@ import Link from 'next/link' import { getAllPostMeta } from '@/lib/blog/registry' import { buildCollectionPageJsonLd } from '@/lib/blog/seo' import { SITE_URL } from '@/lib/core/utils/urls' +import { Cta } from '@/app/(landing)/components' import { JsonLd } from '@/app/(landing)/components/json-ld' export async function generateMetadata({ @@ -91,151 +92,157 @@ export default async function BlogIndex({ const collectionJsonLd = buildCollectionPageJsonLd() return ( -
- - - {/* Section header */} -
-
-

- Latest from Sim -

-

- Announcements, insights, and guides for building AI agents. -

+ <> +
+ + + {/* Section header */} +
+
+

+ Latest from Sim +

+

+ Announcements, insights, and guides for building AI agents. +

+
-
- - {/* Full-width top line */} -
- - {/* Content area with vertical border rails */} -
-
- {/* Featured posts */} - {featured.length > 0 && ( - <> - -
- - )} - - {remaining.map((p) => ( -
- - {/* Date */} - - {new Date(p.date).toLocaleDateString('en-US', { - month: 'short', - day: 'numeric', - year: 'numeric', - })} - - - {/* Title + description */} -
- + {/* Full-width top line */} +
+ + {/* Content area with vertical border rails */} +
+
+ {/* Featured posts */} + {featured.length > 0 && ( + <> + + +
+ + )} + + {remaining.map((p) => ( +
+ + {/* Date */} + {new Date(p.date).toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric', })} -

- {p.title} -

-

- {p.description} -

-
- {/* Image */} -
- {p.title} -
- -
-
- ))} - - {/* Pagination */} - {totalPages > 1 && ( - - )} + ))} + + {/* Pagination */} + {totalPages > 1 && ( + + )} +
-
- {/* Full-width bottom line - overlaps last inner divider to avoid double border */} -
-
+ {/* Full-width bottom line - overlaps last inner divider to avoid double border */} +
+ + +
+ +
+ ) }