mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
* improvement: panel tabs handler on click * fix: output break words * feat: keyboard navigation; improvement: SEO/GEO; refactor: file structure, unused fonts; fix: chat streaming, notification stack * feat: unresolved value handling on error; fix: layout refresh; refactor: delete old panel * refactor: control bar delete; improvement: workflow constants; fix: clear notifications keyboard shortcut * update developers count * fixed relative imports --------- Co-authored-by: waleed <walif6@gmail.com>
17 lines
473 B
TypeScript
17 lines
473 B
TypeScript
import { cn } from '@/lib/utils'
|
|
import AuthBackgroundSVG from '@/app/(auth)/components/auth-background-svg'
|
|
|
|
type AuthBackgroundProps = {
|
|
className?: string
|
|
children?: React.ReactNode
|
|
}
|
|
|
|
export default function AuthBackground({ className, children }: AuthBackgroundProps) {
|
|
return (
|
|
<div className={cn('relative min-h-screen w-full overflow-hidden', className)}>
|
|
<AuthBackgroundSVG />
|
|
<div className='relative z-20'>{children}</div>
|
|
</div>
|
|
)
|
|
}
|