Skip to content

Commit 3c4da85

Browse files
waleedlatif1claude
andcommitted
improvement(blog): simplify title and remove code block header
- Simplified blog title from "Introducing Sim Studio v0.5" to "Introducing Sim v0.5" - Removed language label header and copy button from code blocks for cleaner appearance Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 2997b73 commit 3c4da85

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

apps/sim/content/blog/v0-5/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: v0-5
3-
title: 'Introducing Sim v0.5: Copilot, MCP Deployment, 100+ Integrations, Full Observability, and more'
4-
description: 'Sim v0.5 brings context-aware AI assistance, seamless tool deployment via MCP, 100+ integrations with 300+ tools, comprehensive execution logs, and realtime collaboration—built for teams shipping AI agents in production.'
3+
title: 'Introducing Sim v0.5'
4+
description: 'This new release brings a state of the art Copilot, seamless MCP server and tool deployment, 100+ integrations with 300+ tools, comprehensive execution logs, and realtime collaboration—built for teams shipping AI agents in production.'
55
date: 2026-01-22
66
updated: 2026-01-22
77
authors:

apps/sim/lib/blog/code.tsx

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
'use client'
22

3-
import { useState } from 'react'
4-
import { Check, Copy } from 'lucide-react'
53
import { Code } from '@/components/emcn'
64

75
interface CodeBlockProps {
@@ -10,30 +8,8 @@ interface CodeBlockProps {
108
}
119

1210
export function CodeBlock({ code, language }: CodeBlockProps) {
13-
const [copied, setCopied] = useState(false)
14-
15-
const handleCopy = () => {
16-
navigator.clipboard.writeText(code)
17-
setCopied(true)
18-
setTimeout(() => setCopied(false), 2000)
19-
}
20-
2111
return (
2212
<div className='dark w-full overflow-hidden rounded-md border border-[#2a2a2a] bg-[#1F1F1F] text-sm'>
23-
<div className='flex items-center justify-between border-[#2a2a2a] border-b px-4 py-1.5'>
24-
<span className='text-[#A3A3A3] text-xs'>{language}</span>
25-
<button
26-
onClick={handleCopy}
27-
className='text-[#A3A3A3] transition-colors hover:text-gray-300'
28-
title='Copy code'
29-
>
30-
{copied ? (
31-
<Check className='h-3 w-3' strokeWidth={2} />
32-
) : (
33-
<Copy className='h-3 w-3' strokeWidth={2} />
34-
)}
35-
</button>
36-
</div>
3713
<Code.Viewer
3814
code={code}
3915
showGutter

0 commit comments

Comments
 (0)