Skip to content

Commit e702a05

Browse files
author
waleed
committed
feat(blog): fundraise blog
1 parent eed2072 commit e702a05

File tree

10 files changed

+366
-291
lines changed

10 files changed

+366
-291
lines changed

apps/sim/app/(landing)/blog/page.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ export default async function BlogIndex({
1717

1818
const all = await getAllPostMeta()
1919
const filtered = tag ? all.filter((p) => p.tags.includes(tag)) : all
20-
const totalPages = Math.max(1, Math.ceil(filtered.length / perPage))
20+
const featured = pageNum === 1 ? filtered.find((p) => p.featured) || filtered[0] : null
21+
const listBase = featured ? filtered.filter((p) => p.slug !== featured.slug) : filtered
22+
const totalPages = Math.max(1, Math.ceil(listBase.length / perPage))
2123
const start = (pageNum - 1) * perPage
22-
const posts = filtered.slice(start, start + perPage)
24+
const posts = listBase.slice(start, start + perPage)
2325
// Tag filter chips are intentionally disabled for now.
2426
// const tags = await getAllTags()
2527
const blogJsonLd = {
@@ -30,7 +32,7 @@ export default async function BlogIndex({
3032
description: 'Announcements, insights, and guides for building AI agent workflows.',
3133
}
3234

33-
const [featured, ...rest] = posts
35+
const rest = posts
3436

3537
return (
3638
<main className={`${soehne.className} mx-auto max-w-[1200px] px-6 py-12 sm:px-8 md:px-12`}>

apps/sim/app/(landing)/careers/page.tsx

Lines changed: 298 additions & 285 deletions
Large diffs are not rendered by default.

apps/sim/app/(landing)/components/legal-layout.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ import { soehne } from '@/app/fonts/soehne/soehne'
88
interface LegalLayoutProps {
99
title: string
1010
children: React.ReactNode
11+
navVariant?: 'landing' | 'auth' | 'legal'
1112
}
1213

13-
export default function LegalLayout({ title, children }: LegalLayoutProps) {
14+
export default function LegalLayout({ title, children, navVariant = 'legal' }: LegalLayoutProps) {
1415
return (
1516
<main className={`${soehne.className} min-h-screen bg-white text-gray-900`}>
1617
{/* Header - Nav handles all conditional logic */}
17-
<Nav variant='legal' />
18+
<Nav variant={navVariant} />
1819

1920
{/* Content */}
2021
<div className='px-12 pt-[40px] pb-[40px]'>

apps/sim/app/(landing)/components/nav/nav.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default function Nav({ hideAuthButtons = false, variant = 'landing' }: Na
7171
</li>
7272
<li>
7373
<Link
74-
href='#pricing'
74+
href='/?from=nav#pricing'
7575
className='text-[16px] text-muted-foreground transition-colors hover:text-foreground'
7676
scroll={true}
7777
>
@@ -88,6 +88,14 @@ export default function Nav({ hideAuthButtons = false, variant = 'landing' }: Na
8888
Enterprise
8989
</button>
9090
</li>
91+
<li>
92+
<Link
93+
href='/careers'
94+
className='text-[16px] text-muted-foreground transition-colors hover:text-foreground'
95+
>
96+
Careers
97+
</Link>
98+
</li>
9199
<li>
92100
<a
93101
href='https://github.com/simstudioai/sim'
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
slug: series-a
3+
title: 'Sim raises $7M Series A led by Standard Capital'
4+
description: We’re excited to share that Sim has raised a $7M Series A led by Standard Capital to accelerate our vision for agentic workflows and expand the team.
5+
date: 2025-11-08
6+
updated: 2025-11-08
7+
authors:
8+
- sim
9+
readingTime: 4
10+
tags: [Announcement, Funding, Series A, Sim]
11+
ogImage: /blog/series-a/cover.png
12+
ogAlt: 'Sim team photo in front of neon logo'
13+
about: ['Artificial Intelligence', 'Agentic Workflows', 'Startups', 'Funding']
14+
timeRequired: PT4M
15+
canonical: https://sim.ai/blog/series-a
16+
featured: true
17+
draft: false
18+
---
19+
20+
![Sim team photo](/blog/series-a/team.png)
21+
22+
## Why we’re excited
23+
24+
Today we’re announcing our $7M Series A led by Standard Capital with participation from Perplexity Fund, SV Angel, YCombinator, and notable angels like Paul Graham, Paul Bucheit, Ali Rowghani, Kaz Nejatian, and many more. This investment helps us double‑down on our mission: make it simple for teams to build, ship, and scale agentic workflows in production.
25+
26+
## How we got here
27+
28+
We started earlier this year in our apartment in San Francisco. The goal was to rebuild our entire previous company (if you can call it that) from scratch on a visual framework. We figured that if we could at least build an AI sales and marketing operation solely using building blocks on a canvas, then anyone could build anything. Soon after, we'd built the foundation of what would become Sim. We were hellbent on being Open Source from day one, and we're proud that we've stuck to that commitment.
29+
30+
## Progress so far
31+
32+
...so far...
33+
34+
## Our vision
35+
36+
We believe the next wave of software is agentic. Teams will compose specialized agents that reason, retrieve, and act—safely and reliably—across their business. Our focus is to provide the infrastructure and UX that make this practical at scale: from prototyping to production, from single‑agent flows to complex multi‑agent systems. On one end of the spectrum, there are SDKs and frameworks that are complex and require a lot of code to build and manage, and on the other end of the spectrum, there are platforms that are easy to use but severely limit in what you can build. Sim offers a platform that is both easy to use and powerful enough to build complex agentic workflows.
37+
38+
## What’s next
39+
40+
We’ll invest in building the community around Sim, and we'll be hiring across engineering, product, and design. ...ADD MORE...
41+
42+
## We’re hiring
43+
44+
If you’re excited about agentic systems and want to help define the future of this space, we’d love to talk. We’re hiring across engineering, product, and design.
45+
46+
— Team Sim
47+
48+

apps/sim/lib/blog/registry.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ async function scanFrontmatters(): Promise<BlogMeta[]> {
7575
timeRequired: fm.timeRequired,
7676
faq: fm.faq,
7777
draft: fm.draft,
78+
featured: fm.featured ?? false,
7879
})
7980
}
8081
cachedMeta = results.sort(byDateDesc)

apps/sim/lib/blog/schema.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export const BlogFrontmatterSchema = z
3636
.optional(),
3737
canonical: z.string().url(),
3838
draft: z.boolean().default(false),
39+
featured: z.boolean().default(false),
3940
})
4041
.strict()
4142

@@ -58,6 +59,7 @@ export interface BlogMeta {
5859
faq?: { q: string; a: string }[]
5960
canonical: string
6061
draft: boolean
62+
featured: boolean
6163
sourcePath?: string
6264
}
6365

2.38 MB
Loading
90.2 KB
Loading
10.2 MB
Loading

0 commit comments

Comments
 (0)