Skip to content

Commit ebc1948

Browse files
improvement(landing, blog): ui/ux (#3972)
* refactor: moved home into landing * improvement(landing): blog dropdown and content updates * improvement: ui/ux * improvement: footer, enterprise, templates,etc. * improvement: blog * fix: reset feature flags to dynamic values * fix: remove unused mobileLabel reference in features tabs * improvement(auth): match oauth button styling with inputs and navbar login * fix: resolve TypeScript errors in landing components - Add explicit FeatureTab interface type for FEATURE_TABS with optional mobileLabel property - Remove reference to undefined MOBILE_STEPS in landing-preview (mobile uses static display anyway) Co-authored-by: Emir Karabeg <emir-karabeg@users.noreply.github.com> * fix(demo-request): remove region from schema and route, delete unused PostGrid --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Emir Karabeg <emir-karabeg@users.noreply.github.com>
1 parent 33e6921 commit ebc1948

File tree

83 files changed

+2346
-2152
lines changed

Some content is hidden

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

83 files changed

+2346
-2152
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { useEffect } from 'react'
44
import AuthBackground from '@/app/(auth)/components/auth-background'
5-
import Navbar from '@/app/(home)/components/navbar/navbar'
5+
import Navbar from '@/app/(landing)/components/navbar/navbar'
66

77
export default function AuthLayoutClient({ children }: { children: React.ReactNode }) {
88
useEffect(() => {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export function SocialLoginButtons({
8181
const githubButton = (
8282
<Button
8383
variant='outline'
84-
className='w-full rounded-[10px]'
84+
className='w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
8585
disabled={!githubAvailable || isGithubLoading}
8686
onClick={signInWithGithub}
8787
>
@@ -93,7 +93,7 @@ export function SocialLoginButtons({
9393
const googleButton = (
9494
<Button
9595
variant='outline'
96-
className='w-full rounded-[10px]'
96+
className='w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
9797
disabled={!googleAvailable || isGoogleLoading}
9898
onClick={signInWithGoogle}
9999
>

apps/sim/app/(auth)/components/sso-login-button.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export function SSOLoginButton({
2828
router.push(ssoUrl)
2929
}
3030

31-
const outlineBtnClasses = cn('w-full rounded-[10px]')
31+
const outlineBtnClasses = cn(
32+
'w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
33+
)
3234

3335
return (
3436
<Button

apps/sim/app/(auth)/components/status-page-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ReactNode } from 'react'
22
import AuthBackground from '@/app/(auth)/components/auth-background'
3-
import Navbar from '@/app/(home)/components/navbar/navbar'
3+
import Navbar from '@/app/(landing)/components/navbar/navbar'
44
import { SupportFooter } from './support-footer'
55

66
export interface StatusPageLayoutProps {

0 commit comments

Comments
 (0)