Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
fix(landing): remove dead DotGrid component and fix enterprise CTA to…
… use Link

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Mar 18, 2026
commit 8d56e5236c4e42275840eb0e89eb0bb1b278c673
19 changes: 0 additions & 19 deletions apps/sim/app/(home)/components/enterprise/enterprise.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,25 +179,6 @@ const FEATURE_TAGS = [
'Audit Logs',
] as const
Comment thread
waleedlatif1 marked this conversation as resolved.

function DotGrid() {
return (
<div
aria-hidden='true'
className='overflow-hidden border-[#2A2A2A] border-b p-[6px]'
style={{
display: 'grid',
gridTemplateColumns: 'repeat(120, 1fr)',
gap: 6,
placeItems: 'center',
}}
>
{Array.from({ length: 120 }, (_, i) => (
<div key={i} className='h-[1.5px] w-[1.5px] rounded-full bg-[#2A2A2A]' />
))}
</div>
)
}

interface AuditRowProps {
entry: LogEntry
index: number
Expand Down
4 changes: 2 additions & 2 deletions apps/sim/app/(home)/components/pricing/pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ function PricingCard({ tier }: PricingCardProps) {
</p>
<div className='mt-4'>
{isEnterprise ? (
<a
<Link
href={tier.cta.href}
className='flex h-[32px] w-full items-center justify-center rounded-[5px] border border-[#E5E5E5] px-[10px] font-[430] font-season text-[#1C1C1C] text-[14px] transition-colors hover:bg-[#F0F0F0]'
>
{tier.cta.label}
</a>
</Link>
) : isPro ? (
<Link
href={tier.cta.href}
Expand Down
Loading