Skip to content

Commit 9dc72d0

Browse files
chore: fix inconsistencies
1 parent 46915e8 commit 9dc72d0

File tree

50 files changed

+395
-421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+395
-421
lines changed

apps/sim/app/(auth)/login/login-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ export default function LoginPage({
501501
{showDivider && (
502502
<div className='relative my-6 font-light'>
503503
<div className='absolute inset-0 flex items-center'>
504-
<div className='w-full border-[#2A2A2A] border-t' />
504+
<div className='w-full border-[var(--landing-bg-elevated)] border-t' />
505505
</div>
506506
<div className='relative flex justify-center text-sm'>
507507
<span className='bg-[var(--landing-bg)] px-4 font-[340] text-[var(--text-subtle)]'>

apps/sim/app/(auth)/oauth/consent/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export default function OAuthConsentPage() {
195195
</div>
196196

197197
{session?.user && (
198-
<div className='mt-5 flex items-center gap-3 rounded-lg border border-[var(--surface-4)] px-4 py-3'>
198+
<div className='mt-5 flex items-center gap-3 rounded-lg border border-[var(--landing-bg-elevated)] px-4 py-3'>
199199
{session.user.image ? (
200200
<Image
201201
src={session.user.image}

apps/sim/app/(auth)/signup/signup-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ function SignupFormContent({
551551
})() && (
552552
<div className='relative my-6 font-light'>
553553
<div className='absolute inset-0 flex items-center'>
554-
<div className='w-full border-[var(--surface-4)] border-t' />
554+
<div className='w-full border-[var(--landing-bg-elevated)] border-t' />
555555
</div>
556556
<div className='relative flex justify-center text-sm'>
557557
<span className='bg-[var(--landing-bg)] px-4 font-[340] text-[var(--text-subtle)]'>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function DotGrid({ className, cols, rows, gap = 0 }: DotGridProps) {
2525
}}
2626
>
2727
{Array.from({ length: cols * rows }, (_, i) => (
28-
<div key={i} className='h-[1.5px] w-[1.5px] rounded-full bg-[var(--surface-4)]' />
28+
<div key={i} className='h-[1.5px] w-[1.5px] rounded-full bg-[var(--landing-bg-elevated)]' />
2929
))}
3030
</div>
3131
)
@@ -222,7 +222,7 @@ export default function Collaboration() {
222222
<style dangerouslySetInnerHTML={{ __html: CURSOR_KEYFRAMES }} />
223223

224224
<DotGrid
225-
className='overflow-hidden border-[var(--surface-4)] border-y bg-[var(--landing-bg)] p-1.5'
225+
className='overflow-hidden border-[var(--landing-bg-elevated)] border-y bg-[var(--landing-bg)] p-1.5'
226226
cols={120}
227227
rows={1}
228228
gap={6}
@@ -256,7 +256,7 @@ export default function Collaboration() {
256256

257257
<Link
258258
href='/signup'
259-
className='group/cta mt-3 inline-flex h-[32px] cursor-none items-center gap-1.5 rounded-[5px] border border-[var(--white)] bg-[var(--white)] px-2.5 font-[430] font-season text-black text-sm transition-colors hover:border-[var(--border-1)] hover:bg-[var(--border-1)]'
259+
className='group/cta mt-3 inline-flex h-[32px] cursor-none items-center gap-1.5 rounded-[5px] border border-white bg-white px-2.5 font-[430] font-season text-black text-sm transition-colors hover:border-[#E0E0E0] hover:bg-[#E0E0E0]'
260260
>
261261
Build together
262262
<span className='relative h-[10px] w-[10px] shrink-0'>
@@ -306,7 +306,7 @@ export default function Collaboration() {
306306
href='/blog/multiplayer'
307307
target='_blank'
308308
rel='noopener noreferrer'
309-
className='relative mx-4 mb-6 flex cursor-none items-center gap-3.5 rounded-[5px] border border-[var(--surface-4)] bg-[var(--landing-bg)] px-3 py-2.5 transition-colors hover:border-[var(--border-1)] hover:bg-[var(--surface-2)] sm:mx-8 md:absolute md:bottom-10 md:left-[80px] md:z-20 md:mx-0 md:mb-0'
309+
className='relative mx-4 mb-6 flex cursor-none items-center gap-3.5 rounded-[5px] border border-[var(--landing-bg-elevated)] bg-[var(--landing-bg)] px-3 py-2.5 transition-colors hover:border-[#3d3d3d] hover:bg-[var(--landing-bg-card)] sm:mx-8 md:absolute md:bottom-10 md:left-[80px] md:z-20 md:mx-0 md:mb-0'
310310
>
311311
<div className='relative h-7 w-11 shrink-0'>
312312
<Image src='/landing/multiplayer-cursors.svg' alt='' fill className='object-contain' />
@@ -323,7 +323,7 @@ export default function Collaboration() {
323323
</div>
324324

325325
<DotGrid
326-
className='overflow-hidden border-[var(--surface-4)] border-y bg-[var(--landing-bg)] p-1.5'
326+
className='overflow-hidden border-[var(--landing-bg-elevated)] border-y bg-[var(--landing-bg)] p-1.5'
327327
cols={120}
328328
rows={1}
329329
gap={6}

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ const FEATURE_TAGS = [
6464

6565
function TrustStrip() {
6666
return (
67-
<div className='mx-6 mt-4 grid grid-cols-1 overflow-hidden rounded-lg border border-[var(--surface-4)] sm:grid-cols-3 md:mx-8'>
67+
<div className='mx-6 mt-4 grid grid-cols-1 overflow-hidden rounded-lg border border-[var(--landing-bg-elevated)] sm:grid-cols-3 md:mx-8'>
6868
{/* SOC 2 + HIPAA combined */}
6969
<Link
7070
href='https://app.vanta.com/sim.ai/trust/v35ia0jil4l7dteqjgaktn'
7171
target='_blank'
7272
rel='noopener noreferrer'
73-
className='group flex items-center gap-3 border-[var(--surface-4)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--surface-1)] sm:border-r sm:border-b-0'
73+
className='group flex items-center gap-3 border-[var(--landing-bg-elevated)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--landing-bg-surface)] sm:border-r sm:border-b-0'
7474
>
7575
<Image
7676
src='/footer/soc2.png'
@@ -94,7 +94,7 @@ function TrustStrip() {
9494
href='https://github.com/simstudioai/sim'
9595
target='_blank'
9696
rel='noopener noreferrer'
97-
className='group flex items-center gap-3 border-[var(--surface-4)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--surface-1)] sm:border-r sm:border-b-0'
97+
className='group flex items-center gap-3 border-[var(--landing-bg-elevated)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--landing-bg-surface)] sm:border-r sm:border-b-0'
9898
>
9999
<div className='flex h-[22px] w-[22px] shrink-0 items-center justify-center rounded-full bg-[#FFCC02]/10'>
100100
<GithubIcon width={11} height={11} className='text-[#FFCC02]/75' />
@@ -147,7 +147,7 @@ export default function Enterprise() {
147147

148148
<h2
149149
id='enterprise-heading'
150-
className='max-w-[600px] font-[430] font-season text-[var(--landing-text)] text-[32px] leading-[100%] tracking-[-0.02em] sm:text-[36px] md:text-[40px]'
150+
className='max-w-[600px] font-[430] font-season text-[32px] text-[var(--landing-text-dark)] leading-[100%] tracking-[-0.02em] sm:text-[36px] md:text-[40px]'
151151
>
152152
Enterprise features for
153153
<br />
@@ -190,7 +190,7 @@ export default function Enterprise() {
190190
<TrustStrip />
191191

192192
{/* Scrolling feature ticker — keyframe loop; pause on hover. Tags use transitions for hover. */}
193-
<div className='enterprise-feature-marquee relative mt-6 overflow-hidden border-[var(--surface-4)] border-t'>
193+
<div className='enterprise-feature-marquee relative mt-6 overflow-hidden border-[var(--landing-bg-elevated)] border-t'>
194194
<style dangerouslySetInnerHTML={{ __html: ENTERPRISE_FEATURE_MARQUEE_STYLES }} />
195195
{/* Fade edges */}
196196
<div
@@ -209,7 +209,7 @@ export default function Enterprise() {
209209
(tag, i) => (
210210
<span
211211
key={i}
212-
className='enterprise-feature-marquee-tag whitespace-nowrap border-[var(--surface-4)] border-r px-5 py-4 font-[430] font-season text-[var(--landing-text-subtle)]/40 text-small leading-none tracking-[0.02em] hover:bg-white/[0.04] hover:text-[var(--landing-text-subtle)]/55'
212+
className='enterprise-feature-marquee-tag whitespace-nowrap border-[var(--landing-bg-elevated)] border-r px-5 py-4 font-[430] font-season text-[color-mix(in_srgb,var(--landing-text-subtle)_40%,transparent)] text-small leading-none tracking-[0.02em] hover:bg-white/[0.04] hover:text-[color-mix(in_srgb,var(--landing-text-subtle)_55%,transparent)]'
213213
>
214214
{tag}
215215
</span>
@@ -218,8 +218,8 @@ export default function Enterprise() {
218218
</div>
219219
</div>
220220

221-
<div className='flex items-center justify-between border-[var(--surface-4)] border-t px-6 py-5 md:px-8 md:py-6'>
222-
<p className='font-[430] font-season text-[var(--landing-text-subtle)]/40 text-base leading-[150%] tracking-[0.02em]'>
221+
<div className='flex items-center justify-between border-[var(--landing-bg-elevated)] border-t px-6 py-5 md:px-8 md:py-6'>
222+
<p className='font-[430] font-season text-[color-mix(in_srgb,var(--landing-text-subtle)_40%,transparent)] text-base leading-[150%] tracking-[0.02em]'>
223223
Ready for growth?
224224
</p>
225225
<Link

0 commit comments

Comments
 (0)