Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
71afa3a
fix(sidebar): show icon-sized skeletons in collapsed settings sidebar
waleedlatif1 Mar 15, 2026
af872df
fix(sidebar): hide expanded skeletons during pre-hydration in collaps…
waleedlatif1 Mar 15, 2026
a58de5a
fix(sidebar): align collapsed settings skeletons with actual icon pos…
waleedlatif1 Mar 15, 2026
03739d0
fix(sidebar): match collapsed skeleton section grouping with loaded l…
waleedlatif1 Mar 15, 2026
c191f15
fix(sidebar): hoist skeleton section counts to module constant
waleedlatif1 Mar 15, 2026
0725c98
improvement(ui): align all public pages with dark landing theme and i…
waleedlatif1 Mar 15, 2026
4ede522
fix(ui): address PR review comments - restore StatusPageLayout wrappe…
waleedlatif1 Mar 15, 2026
84b8604
fix(ui): add missing dark class to 404 page, add relative positioning…
waleedlatif1 Mar 15, 2026
a814db7
fix(ui): fallback to white button when whitelabeled without primary c…
waleedlatif1 Mar 15, 2026
7a6d689
improvement(seo): add x-default hreflang, speakable schema to landing…
waleedlatif1 Mar 15, 2026
fe92bf4
fix(ui): fix OTP/input light-mode styles and add missing header class…
waleedlatif1 Mar 15, 2026
b487eee
undo hardcoded ff config
waleedlatif1 Mar 15, 2026
8255763
update old components/ui usage to emcn
waleedlatif1 Mar 15, 2026
d904f81
fix(ui): add SupportFooter to InviteLayout, remove duplicates from un…
waleedlatif1 Mar 15, 2026
3cb33e5
fix(ui): fix invite layout flex centering, use BrandedButton on 404 page
waleedlatif1 Mar 16, 2026
f337b66
fix(ui): fix OTP group styling, props spread order in BrandedButton, …
waleedlatif1 Mar 16, 2026
88ac9d3
fix: enterprise hydration error
emir-karabeg Mar 16, 2026
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
Prev Previous commit
Next Next commit
fix(ui): add SupportFooter to InviteLayout, remove duplicates from un…
…subscribe page
  • Loading branch information
waleedlatif1 committed Mar 15, 2026
commit d904f8106dd33bbf54c892f19711f3a64dc6f079
2 changes: 2 additions & 0 deletions apps/sim/app/invite/components/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use client'

import { SupportFooter } from '@/app/(auth)/components/support-footer'
import Navbar from '@/app/(home)/components/navbar/navbar'

interface InviteLayoutProps {
Expand All @@ -17,6 +18,7 @@ export default function InviteLayout({ children }: InviteLayoutProps) {
<div className='flex flex-col items-center justify-center'>{children}</div>
</div>
</main>
<SupportFooter position='absolute' />
</div>
Comment thread
waleedlatif1 marked this conversation as resolved.
Comment thread
waleedlatif1 marked this conversation as resolved.
)
}
11 changes: 0 additions & 11 deletions apps/sim/app/unsubscribe/unsubscribe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Suspense, useEffect, useState } from 'react'
import { Loader2 } from 'lucide-react'
import { useSearchParams } from 'next/navigation'
import { BrandedButton } from '@/app/(auth)/components/branded-button'
import { SupportFooter } from '@/app/(auth)/components/support-footer'
import { InviteLayout } from '@/app/invite/components'

interface UnsubscribeData {
Expand Down Expand Up @@ -128,7 +127,6 @@ function UnsubscribeContent() {
<div className={'mt-8 flex w-full items-center justify-center py-8'}>
<Loader2 className='h-8 w-8 animate-spin text-[#999]' />
Comment thread
waleedlatif1 marked this conversation as resolved.
</div>
<SupportFooter position='absolute' />
</InviteLayout>
)
}
Expand All @@ -146,8 +144,6 @@ function UnsubscribeContent() {
<div className={'mt-8 w-full max-w-[410px] space-y-3'}>
<BrandedButton onClick={() => window.history.back()}>Go Back</BrandedButton>
</div>

<SupportFooter position='absolute' />
</InviteLayout>
)
}
Expand All @@ -168,8 +164,6 @@ function UnsubscribeContent() {
<div className={'mt-8 w-full max-w-[410px] space-y-3'}>
<BrandedButton onClick={() => window.close()}>Close</BrandedButton>
</div>

<SupportFooter position='absolute' />
</InviteLayout>
)
}
Expand All @@ -190,8 +184,6 @@ function UnsubscribeContent() {
<div className={'mt-8 w-full max-w-[410px] space-y-3'}>
<BrandedButton onClick={() => window.close()}>Close</BrandedButton>
</div>

<SupportFooter position='absolute' />
</InviteLayout>
)
}
Expand Down Expand Up @@ -272,8 +264,6 @@ function UnsubscribeContent() {
alerts.
</p>
</div>

<SupportFooter position='absolute' />
</InviteLayout>
)
}
Expand All @@ -292,7 +282,6 @@ export default function Unsubscribe() {
<div className={'mt-8 flex w-full items-center justify-center py-8'}>
<Loader2 className='h-8 w-8 animate-spin text-[#999]' />
</div>
<SupportFooter position='absolute' />
</InviteLayout>
}
>
Expand Down
Loading