Skip to content

Commit d256bc8

Browse files
committed
feat: keyboard navigation; improvement: SEO/GEO; refactor: file structure, unused fonts; fix: chat streaming, notification stack
1 parent 97e25b7 commit d256bc8

File tree

137 files changed

+1027
-388
lines changed

Some content is hidden

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

137 files changed

+1027
-388
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/inter'
7+
import { inter } from '@/app/_styles/fonts/inter/inter'
88

99
interface SocialLoginButtonsProps {
1010
githubAvailable: boolean

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ import { getEnv, isFalsy, isTruthy } from '@/lib/env'
2020
import { createLogger } from '@/lib/logs/console/logger'
2121
import { getBaseUrl } from '@/lib/urls/utils'
2222
import { cn } from '@/lib/utils'
23+
import { inter } from '@/app/_styles/fonts/inter/inter'
24+
import { soehne } from '@/app/_styles/fonts/soehne/soehne'
2325
import { SocialLoginButtons } from '@/app/(auth)/components/social-login-buttons'
2426
import { SSOLoginButton } from '@/app/(auth)/components/sso-login-button'
25-
import { inter } from '@/app/fonts/inter/inter'
26-
import { soehne } from '@/app/fonts/soehne/soehne'
2727

2828
const logger = createLogger('LoginForm')
2929

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { Suspense, useEffect, useState } from 'react'
44
import Link from 'next/link'
55
import { useRouter, useSearchParams } from 'next/navigation'
66
import { createLogger } from '@/lib/logs/console/logger'
7+
import { inter } from '@/app/_styles/fonts/inter/inter'
8+
import { soehne } from '@/app/_styles/fonts/soehne/soehne'
79
import { SetNewPasswordForm } from '@/app/(auth)/reset-password/reset-password-form'
8-
import { inter } from '@/app/fonts/inter/inter'
9-
import { soehne } from '@/app/fonts/soehne/soehne'
1010

1111
const logger = createLogger('ResetPasswordPage')
1212

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/inter'
9+
import { inter } from '@/app/_styles/fonts/inter/inter'
1010

1111
interface RequestResetFormProps {
1212
email: string

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import { quickValidateEmail } from '@/lib/email/validation'
1212
import { getEnv, isFalsy, isTruthy } from '@/lib/env'
1313
import { createLogger } from '@/lib/logs/console/logger'
1414
import { cn } from '@/lib/utils'
15+
import { inter } from '@/app/_styles/fonts/inter/inter'
16+
import { soehne } from '@/app/_styles/fonts/soehne/soehne'
1517
import { SocialLoginButtons } from '@/app/(auth)/components/social-login-buttons'
1618
import { SSOLoginButton } from '@/app/(auth)/components/sso-login-button'
17-
import { inter } from '@/app/fonts/inter/inter'
18-
import { soehne } from '@/app/fonts/soehne/soehne'
1919

2020
const logger = createLogger('SignupForm')
2121

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { quickValidateEmail } from '@/lib/email/validation'
1111
import { env, isFalsy } from '@/lib/env'
1212
import { createLogger } from '@/lib/logs/console/logger'
1313
import { cn } from '@/lib/utils'
14-
import { inter } from '@/app/fonts/inter/inter'
15-
import { soehne } from '@/app/fonts/soehne/soehne'
14+
import { inter } from '@/app/_styles/fonts/inter/inter'
15+
import { soehne } from '@/app/_styles/fonts/soehne/soehne'
1616

1717
const logger = createLogger('SSOForm')
1818

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { useRouter } from 'next/navigation'
55
import { Button } from '@/components/ui/button'
66
import { InputOTP, InputOTPGroup, InputOTPSlot } from '@/components/ui/input-otp'
77
import { cn } from '@/lib/utils'
8+
import { inter } from '@/app/_styles/fonts/inter/inter'
9+
import { soehne } from '@/app/_styles/fonts/soehne/soehne'
810
import { useVerification } from '@/app/(auth)/verify/use-verification'
9-
import { inter } from '@/app/fonts/inter/inter'
10-
import { soehne } from '@/app/fonts/soehne/soehne'
1111

1212
interface VerifyContentProps {
1313
hasEmailService: boolean

apps/sim/app/(landing)/careers/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import { quickValidateEmail } from '@/lib/email/validation'
1717
import { isHosted } from '@/lib/environment'
1818
import { createLogger } from '@/lib/logs/console/logger'
1919
import { cn } from '@/lib/utils'
20+
import { soehne } from '@/app/_styles/fonts/soehne/soehne'
2021
import Footer from '@/app/(landing)/components/footer/footer'
2122
import Nav from '@/app/(landing)/components/nav/nav'
22-
import { soehne } from '@/app/fonts/soehne/soehne'
2323

2424
const logger = createLogger('CareersPage')
2525

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/inter'
10+
import { inter } from '@/app/_styles/fonts/inter/inter'
1111

1212
const blocks = [
1313
'Agent',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
SupabaseIcon,
3434
} from '@/components/icons'
3535
import { LandingPromptStorage } from '@/lib/browser-storage'
36-
import { soehne } from '@/app/fonts/soehne/soehne'
36+
import { soehne } from '@/app/_styles/fonts/soehne/soehne'
3737
import {
3838
CARD_WIDTH,
3939
IconButton,

0 commit comments

Comments
 (0)