Your calm window into the Atmosphere. morgen.blue
rss atproto
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(ui): rename auth-login-layout to auth-golden-layout

The layout describes its golden-ratio split, not the page that uses it —
keeps the door open for other auth screens to reuse the same shell.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+7 -3
+2 -2
resources/js/app.tsx
··· 3 3 import { TooltipProvider } from '@/components/ui/tooltip'; 4 4 import { initializeTheme } from '@/hooks/use-appearance'; 5 5 import AppLayout from '@/layouts/app-layout'; 6 - import AuthLoginLayout from '@/layouts/auth/auth-login-layout'; 6 + import AuthGoldenLayout from '@/layouts/auth/auth-golden-layout'; 7 7 import AuthLayout from '@/layouts/auth-layout'; 8 8 import SettingsLayout from '@/layouts/settings/layout'; 9 9 ··· 16 16 case name === 'welcome': 17 17 return null; 18 18 case name === 'auth/login': 19 - return AuthLoginLayout; 19 + return AuthGoldenLayout; 20 20 case name.startsWith('auth/'): 21 21 return AuthLayout; 22 22 case name.startsWith('settings/'):
+5 -1
resources/js/layouts/auth/auth-login-layout.tsx resources/js/layouts/auth/auth-golden-layout.tsx
··· 2 2 import AppLogoIcon from '@/components/app-logo-icon'; 3 3 import { Window } from '@/components/window'; 4 4 5 - export default function AuthLoginLayout({ children }: { children: ReactNode }) { 5 + export default function AuthGoldenLayout({ 6 + children, 7 + }: { 8 + children: ReactNode; 9 + }) { 6 10 return ( 7 11 <div className="flex min-h-svh gap-6 bg-background p-6"> 8 12 <section className="flex flex-[1.618] items-center">