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
2 changes: 1 addition & 1 deletion apps/sim/app/(landing)/building/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function BuildingLayout({ children }: { children: React.ReactNode
<>
<Nav hideAuthButtons={false} variant='landing' />
<main className='relative'>{children}</main>
<Footer />
<Footer fullWidth={true} />
</>
)
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Image from 'next/image'
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
import { soehne } from '@/app/fonts/soehne/soehne'

/**
Expand Down Expand Up @@ -139,27 +140,32 @@ export default function OpenAiN8nSim() {
OpenAI AgentKit vs n8n vs Sim: AI Agent Workflow Builder Comparison
</h1>
<div className='mt-4 hidden items-center justify-end gap-2 sm:flex'>
<Image
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
alt='Emir Karabeg'
width={24}
height={24}
className='rounded-full'
/>
<p className='text-[14px] text-gray-600 leading-[1.5] sm:text-[16px]'>
Written by{' '}
<a
href='https://x.com/karabegemir'
target='_blank'
rel='noopener noreferrer author'
className='text-gray-600 hover:text-gray-900'
itemProp='author'
itemScope
itemType='https://schema.org/Person'
>
<span itemProp='name'>Emir Karabeg</span>
</a>
</p>
<a
href='https://x.com/karabegemir'
target='_blank'
rel='noopener noreferrer author'
aria-label='@karabegemir on X'
className='block'
>
<Avatar className='size-6'>
<AvatarImage
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
alt='Emir Karabeg'
/>
<AvatarFallback>EK</AvatarFallback>
</Avatar>
</a>
<a
href='https://x.com/karabegemir'
target='_blank'
rel='noopener noreferrer author'
className='text-[14px] text-gray-600 leading-[1.5] hover:text-gray-900 sm:text-[16px]'
itemProp='author'
itemScope
itemType='https://schema.org/Person'
>
<span itemProp='name'>Emir Karabeg</span>
</a>
</div>
</div>
</div>
Expand All @@ -180,24 +186,29 @@ export default function OpenAiN8nSim() {
</time>
<meta itemProp='dateModified' content='2025-10-06T00:00:00.000Z' />
<div className='flex items-center gap-2 sm:hidden'>
<Image
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
alt='Emir Karabeg'
width={24}
height={24}
className='rounded-full'
/>
<p className='text-[14px] text-gray-600 leading-[1.5]'>
Written by{' '}
<a
href='https://x.com/karabegemir'
target='_blank'
rel='noopener noreferrer author'
className='text-gray-600 hover:text-gray-900'
>
Emir Karabeg
</a>
</p>
<a
href='https://x.com/karabegemir'
target='_blank'
rel='noopener noreferrer author'
aria-label='@karabegemir on X'
className='block'
>
<Avatar className='size-6'>
<AvatarImage
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
alt='Emir Karabeg'
/>
<AvatarFallback>EK</AvatarFallback>
</Avatar>
</a>
<a
href='https://x.com/karabegemir'
target='_blank'
rel='noopener noreferrer author'
className='text-[14px] text-gray-600 leading-[1.5] hover:text-gray-900'
>
Emir Karabeg
</a>
</div>
</div>

Expand Down
6 changes: 6 additions & 0 deletions apps/sim/app/(landing)/components/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,12 @@ export default function Footer({ fullWidth = false }: FooterProps) {
>
Enterprise
</Link>
<Link
href='/building'
className='text-[14px] text-muted-foreground transition-colors hover:text-foreground'
>
Building
</Link>
<Link
href='/changelog'
className='text-[14px] text-muted-foreground transition-colors hover:text-foreground'
Expand Down
3 changes: 2 additions & 1 deletion apps/sim/app/theme-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
pathname.startsWith('/invite') ||
pathname.startsWith('/verify') ||
pathname.startsWith('/changelog') ||
pathname.startsWith('/chat')
pathname.startsWith('/chat') ||
pathname.startsWith('/building')
? 'light'
: undefined

Expand Down