Skip to content

Commit 3323d54

Browse files
committed
feat(fonts): season replacing geist
1 parent c70c32a commit 3323d54

File tree

81 files changed

+86
-48
lines changed

Some content is hidden

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

81 files changed

+86
-48
lines changed

apps/sim/app/(auth)/components/social-login-buttons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { type ReactNode, useEffect, useState } from 'react'
44
import { GithubIcon, GoogleIcon } from '@/components/icons'
55
import { Button } from '@/components/ui/button'
66
import { client } from '@/lib/auth-client'
7-
import { inter } from '@/app/fonts/inter'
7+
import { inter } from '@/app/fonts/inter/inter'
88

99
interface SocialLoginButtonsProps {
1010
githubAvailable: boolean

apps/sim/app/(auth)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function AuthLayout({ children }: { children: React.ReactNode })
2828
}, [])
2929
return (
3030
<AuthBackground>
31-
<main className='relative flex min-h-screen flex-col font-geist-sans text-foreground'>
31+
<main className='relative flex min-h-screen flex-col text-foreground'>
3232
{/* Header - Nav handles all conditional logic */}
3333
<Nav hideAuthButtons={true} variant='auth' />
3434

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { getBaseUrl } from '@/lib/urls/utils'
2222
import { cn } from '@/lib/utils'
2323
import { SocialLoginButtons } from '@/app/(auth)/components/social-login-buttons'
2424
import { SSOLoginButton } from '@/app/(auth)/components/sso-login-button'
25-
import { inter } from '@/app/fonts/inter'
25+
import { inter } from '@/app/fonts/inter/inter'
2626
import { soehne } from '@/app/fonts/soehne/soehne'
2727

2828
const logger = createLogger('LoginForm')

apps/sim/app/(auth)/reset-password/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Link from 'next/link'
55
import { useRouter, useSearchParams } from 'next/navigation'
66
import { createLogger } from '@/lib/logs/console/logger'
77
import { SetNewPasswordForm } from '@/app/(auth)/reset-password/reset-password-form'
8-
import { inter } from '@/app/fonts/inter'
8+
import { inter } from '@/app/fonts/inter/inter'
99
import { soehne } from '@/app/fonts/soehne/soehne'
1010

1111
const logger = createLogger('ResetPasswordPage')

apps/sim/app/(auth)/reset-password/reset-password-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Button } from '@/components/ui/button'
66
import { Input } from '@/components/ui/input'
77
import { Label } from '@/components/ui/label'
88
import { cn } from '@/lib/utils'
9-
import { inter } from '@/app/fonts/inter'
9+
import { inter } from '@/app/fonts/inter/inter'
1010

1111
interface RequestResetFormProps {
1212
email: string

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { createLogger } from '@/lib/logs/console/logger'
1414
import { cn } from '@/lib/utils'
1515
import { SocialLoginButtons } from '@/app/(auth)/components/social-login-buttons'
1616
import { SSOLoginButton } from '@/app/(auth)/components/sso-login-button'
17-
import { inter } from '@/app/fonts/inter'
17+
import { inter } from '@/app/fonts/inter/inter'
1818
import { soehne } from '@/app/fonts/soehne/soehne'
1919

2020
const logger = createLogger('SignupForm')

apps/sim/app/(auth)/verify/verify-content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Button } from '@/components/ui/button'
66
import { InputOTP, InputOTPGroup, InputOTPSlot } from '@/components/ui/input-otp'
77
import { cn } from '@/lib/utils'
88
import { useVerification } from '@/app/(auth)/verify/use-verification'
9-
import { inter } from '@/app/fonts/inter'
9+
import { inter } from '@/app/fonts/inter/inter'
1010
import { soehne } from '@/app/fonts/soehne/soehne'
1111

1212
interface VerifyContentProps {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
LinkedInIcon,
88
xIcon as XIcon,
99
} from '@/components/icons'
10-
import { inter } from '@/app/fonts/inter'
10+
import { inter } from '@/app/fonts/inter/inter'
1111

1212
const blocks = [
1313
'Agent',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as Icons from '@/components/icons'
2-
import { inter } from '@/app/fonts/inter'
2+
import { inter } from '@/app/fonts/inter/inter'
33

44
// AI models and providers
55
const modelProviderIcons = [

apps/sim/app/(landing)/components/landing-pricing/landing-pricing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
import { useRouter } from 'next/navigation'
1616
import { createLogger } from '@/lib/logs/console/logger'
1717
import { cn } from '@/lib/utils'
18-
import { inter } from '@/app/fonts/inter'
18+
import { inter } from '@/app/fonts/inter/inter'
1919
import {
2020
ENTERPRISE_PLAN_FEATURES,
2121
PRO_PLAN_FEATURES,

0 commit comments

Comments
 (0)