mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-20 20:39:10 +00:00
git-subtree-dir: packages/browseros-agent git-subtree-mainline:8f148d0918git-subtree-split:90bd4be300
15 lines
440 B
TypeScript
15 lines
440 B
TypeScript
import type { FC } from 'react'
|
|
import { Outlet } from 'react-router'
|
|
import ProductLogo from '@/assets/product_logo.svg'
|
|
|
|
export const AuthLayout: FC = () => {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-center bg-background p-4">
|
|
<div className="mb-8 flex flex-col items-center">
|
|
<img src={ProductLogo} alt="BrowserOS" className="size-16" />
|
|
</div>
|
|
<Outlet />
|
|
</div>
|
|
)
|
|
}
|