Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/docs/components/ui/image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function Image({
<NextImage
className={cn(
'overflow-hidden rounded-xl border border-border object-cover',
enableLightbox && 'transition-opacity group-hover:opacity-95',
enableLightbox && 'cursor-pointer transition-opacity group-hover:opacity-95',
className
)}
alt={alt}
Expand All @@ -41,7 +41,7 @@ export function Image({
type='button'
onClick={openLightbox}
aria-label={`Open ${alt} in media viewer`}
className='group block w-full cursor-pointer rounded-xl p-0 text-left'
className='group contents'
Comment thread
waleedlatif1 marked this conversation as resolved.
>
{image}
</button>
Expand Down
7 changes: 5 additions & 2 deletions apps/docs/components/ui/video.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ export function Video({
playsInline={playsInline}
width={width}
height={height}
className={cn(className, enableLightbox && 'transition-opacity group-hover:opacity-[0.97]')}
className={cn(
className,
enableLightbox && 'cursor-pointer transition-opacity group-hover:opacity-[0.97]'
)}
src={getAssetUrl(src)}
/>
)
Expand All @@ -57,7 +60,7 @@ export function Video({
type='button'
onClick={openLightbox}
aria-label={`Open ${src} in media viewer`}
className='group block w-full cursor-pointer rounded-xl p-0 text-left'
className='group contents'
>
{video}
</button>
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/content/docs/en/introduction/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import { FAQ } from '@/components/ui/faq'

Sim is the open-source AI workspace where teams build, deploy, and manage AI agents. Create agents visually with the workflow builder, conversationally through Mothership, or programmatically with the API. Connect AI models, databases, APIs, and 1,000+ business tools to build agents that automate real work — from chatbots and compliance agents to data pipelines and ITSM automation.

<div className="flex justify-center">
<div className="mx-auto w-full overflow-hidden rounded-lg my-6">
Comment thread
waleedlatif1 marked this conversation as resolved.
<Image
src="/static/introduction.png"
alt="Sim visual workflow canvas"
width={700}
height={450}
className="my-6"
className="w-full"
/>
</div>

Expand Down
Loading