Skip to content

Commit 174f6a4

Browse files
authored
v0.4.8: more blog
2 parents 4dc4073 + c2f0a95 commit 174f6a4

File tree

4 files changed

+59
-41
lines changed

4 files changed

+59
-41
lines changed

apps/sim/app/(landing)/building/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function BuildingLayout({ children }: { children: React.ReactNode
88
<>
99
<Nav hideAuthButtons={false} variant='landing' />
1010
<main className='relative'>{children}</main>
11-
<Footer />
11+
<Footer fullWidth={true} />
1212
</>
1313
)
1414
}

apps/sim/app/(landing)/building/openai-vs-n8n-vs-sim/openai-n8n-sim.tsx

Lines changed: 50 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Image from 'next/image'
2+
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
23
import { soehne } from '@/app/fonts/soehne/soehne'
34

45
/**
@@ -139,27 +140,32 @@ export default function OpenAiN8nSim() {
139140
OpenAI AgentKit vs n8n vs Sim: AI Agent Workflow Builder Comparison
140141
</h1>
141142
<div className='mt-4 hidden items-center justify-end gap-2 sm:flex'>
142-
<Image
143-
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
144-
alt='Emir Karabeg'
145-
width={24}
146-
height={24}
147-
className='rounded-full'
148-
/>
149-
<p className='text-[14px] text-gray-600 leading-[1.5] sm:text-[16px]'>
150-
Written by{' '}
151-
<a
152-
href='https://x.com/karabegemir'
153-
target='_blank'
154-
rel='noopener noreferrer author'
155-
className='text-gray-600 hover:text-gray-900'
156-
itemProp='author'
157-
itemScope
158-
itemType='https://schema.org/Person'
159-
>
160-
<span itemProp='name'>Emir Karabeg</span>
161-
</a>
162-
</p>
143+
<a
144+
href='https://x.com/karabegemir'
145+
target='_blank'
146+
rel='noopener noreferrer author'
147+
aria-label='@karabegemir on X'
148+
className='block'
149+
>
150+
<Avatar className='size-6'>
151+
<AvatarImage
152+
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
153+
alt='Emir Karabeg'
154+
/>
155+
<AvatarFallback>EK</AvatarFallback>
156+
</Avatar>
157+
</a>
158+
<a
159+
href='https://x.com/karabegemir'
160+
target='_blank'
161+
rel='noopener noreferrer author'
162+
className='text-[14px] text-gray-600 leading-[1.5] hover:text-gray-900 sm:text-[16px]'
163+
itemProp='author'
164+
itemScope
165+
itemType='https://schema.org/Person'
166+
>
167+
<span itemProp='name'>Emir Karabeg</span>
168+
</a>
163169
</div>
164170
</div>
165171
</div>
@@ -180,24 +186,29 @@ export default function OpenAiN8nSim() {
180186
</time>
181187
<meta itemProp='dateModified' content='2025-10-06T00:00:00.000Z' />
182188
<div className='flex items-center gap-2 sm:hidden'>
183-
<Image
184-
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
185-
alt='Emir Karabeg'
186-
width={24}
187-
height={24}
188-
className='rounded-full'
189-
/>
190-
<p className='text-[14px] text-gray-600 leading-[1.5]'>
191-
Written by{' '}
192-
<a
193-
href='https://x.com/karabegemir'
194-
target='_blank'
195-
rel='noopener noreferrer author'
196-
className='text-gray-600 hover:text-gray-900'
197-
>
198-
Emir Karabeg
199-
</a>
200-
</p>
189+
<a
190+
href='https://x.com/karabegemir'
191+
target='_blank'
192+
rel='noopener noreferrer author'
193+
aria-label='@karabegemir on X'
194+
className='block'
195+
>
196+
<Avatar className='size-6'>
197+
<AvatarImage
198+
src='/building/openai-vs-n8n-vs-sim/emir-karabeg.png'
199+
alt='Emir Karabeg'
200+
/>
201+
<AvatarFallback>EK</AvatarFallback>
202+
</Avatar>
203+
</a>
204+
<a
205+
href='https://x.com/karabegemir'
206+
target='_blank'
207+
rel='noopener noreferrer author'
208+
className='text-[14px] text-gray-600 leading-[1.5] hover:text-gray-900'
209+
>
210+
Emir Karabeg
211+
</a>
201212
</div>
202213
</div>
203214

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,12 @@ export default function Footer({ fullWidth = false }: FooterProps) {
215215
>
216216
Enterprise
217217
</Link>
218+
<Link
219+
href='/building'
220+
className='text-[14px] text-muted-foreground transition-colors hover:text-foreground'
221+
>
222+
Building
223+
</Link>
218224
<Link
219225
href='/changelog'
220226
className='text-[14px] text-muted-foreground transition-colors hover:text-foreground'

apps/sim/app/theme-provider.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
1919
pathname.startsWith('/invite') ||
2020
pathname.startsWith('/verify') ||
2121
pathname.startsWith('/changelog') ||
22-
pathname.startsWith('/chat')
22+
pathname.startsWith('/chat') ||
23+
pathname.startsWith('/building')
2324
? 'light'
2425
: undefined
2526

0 commit comments

Comments
 (0)