Skip to content

Commit 8d56e52

Browse files
waleedlatif1claude
andcommitted
fix(landing): remove dead DotGrid component and fix enterprise CTA to use Link
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 12bf34b commit 8d56e52

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

apps/sim/app/(home)/components/enterprise/enterprise.tsx

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -179,25 +179,6 @@ const FEATURE_TAGS = [
179179
'Audit Logs',
180180
] as const
181181

182-
function DotGrid() {
183-
return (
184-
<div
185-
aria-hidden='true'
186-
className='overflow-hidden border-[#2A2A2A] border-b p-[6px]'
187-
style={{
188-
display: 'grid',
189-
gridTemplateColumns: 'repeat(120, 1fr)',
190-
gap: 6,
191-
placeItems: 'center',
192-
}}
193-
>
194-
{Array.from({ length: 120 }, (_, i) => (
195-
<div key={i} className='h-[1.5px] w-[1.5px] rounded-full bg-[#2A2A2A]' />
196-
))}
197-
</div>
198-
)
199-
}
200-
201182
interface AuditRowProps {
202183
entry: LogEntry
203184
index: number

apps/sim/app/(home)/components/pricing/pricing.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ function PricingCard({ tier }: PricingCardProps) {
125125
</p>
126126
<div className='mt-4'>
127127
{isEnterprise ? (
128-
<a
128+
<Link
129129
href={tier.cta.href}
130130
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]'
131131
>
132132
{tier.cta.label}
133-
</a>
133+
</Link>
134134
) : isPro ? (
135135
<Link
136136
href={tier.cta.href}

0 commit comments

Comments
 (0)