Skip to content
Merged
Prev Previous commit
Next Next commit
improvement(landing): blog dropdown and content updates
  • Loading branch information
emir-karabeg committed Apr 4, 2026
commit 3adb03b4e9107b9086241db06f893f6f017c33d7
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function BlogCard({
</div>
<div className='flex-shrink-0 px-2.5 py-1.5'>
<span
className='font-[430] font-season text-[var(--landing-text-body)] leading-[140%]'
className='block truncate font-[430] font-season text-[var(--landing-text-body)] leading-[140%]'
style={{ fontSize: titleSize }}
>
{title}
Expand Down
21 changes: 6 additions & 15 deletions apps/sim/app/(landing)/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,21 +169,12 @@ export default function Navbar({ logoOnly = false, blogPosts = [] }: NavbarProps
</Link>
)}

<div
className={cn(
'-mt-0.5 absolute top-full left-0 z-50',
isActive
? 'pointer-events-auto opacity-100'
: 'pointer-events-none opacity-0'
)}
style={{
transform: isActive ? 'translateY(0)' : 'translateY(-6px)',
transition: 'opacity 200ms ease, transform 200ms ease',
}}
>
{dropdown === 'docs' && <DocsDropdown />}
{dropdown === 'blog' && <BlogDropdown posts={blogPosts} />}
</div>
{isActive && (
<div className='-mt-0.5 pointer-events-auto absolute top-full left-0 z-50'>
{dropdown === 'docs' && <DocsDropdown />}
{dropdown === 'blog' && <BlogDropdown posts={blogPosts} />}
</div>
)}
</li>
)
}
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/content/blog/enterprise/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
slug: enterprise
title: 'Build with Sim for Enterprise'
title: 'Sim for Enterprise'
description: 'Access control, BYOK, self-hosted deployments, on-prem Copilot, SSO & SAML, whitelabeling, Admin API, and flexible data retention—enterprise features for teams with strict security and compliance requirements.'
date: 2026-02-11
updated: 2026-02-11
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/content/blog/multiplayer/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
slug: multiplayer
title: 'Realtime Collaboration on Sim'
title: 'Realtime Collaboration'
description: A high-level explanation into Sim realtime collaborative workflow builder - from operation queues to conflict resolution.
date: 2025-11-11
updated: 2025-11-11
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/lib/blog/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const getNavBlogPosts = cache(
const allPosts = await getAllPostMeta()
const featuredPost = allPosts.find((p) => p.featured) ?? allPosts[0]
if (!featuredPost) return []
const recentPosts = allPosts.filter((p) => p.slug !== featuredPost.slug).slice(0, 4)
const recentPosts = allPosts.filter((p) => p.slug !== featuredPost.slug).slice(0, 5)
return [featuredPost, ...recentPosts].map((p) => ({
slug: p.slug,
title: p.title,
Expand Down
Binary file modified apps/sim/public/blog/copilot/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/sim/public/blog/enterprise/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/sim/public/blog/executor/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/sim/public/blog/mothership/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/sim/public/blog/multiplayer/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/sim/public/blog/openai-vs-n8n-vs-sim/workflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/sim/public/blog/series-a/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/sim/public/blog/v0-5/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.