feat(frontend): UI polishing, Character Sheet redesign, and translation updates
This commit is contained in:
13
pwa/src/components/AuthenticatedLayout.tsx
Normal file
13
pwa/src/components/AuthenticatedLayout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Outlet } from 'react-router-dom'
|
||||
import LandingHeader from './LandingHeader'
|
||||
|
||||
export default function AuthenticatedLayout() {
|
||||
return (
|
||||
<div className="authenticated-layout" style={{ minHeight: '100vh', display: 'flex', flexDirection: 'column' }}>
|
||||
<LandingHeader />
|
||||
<div className="authenticated-content" style={{ flex: 1, paddingTop: '80px' }}>
|
||||
<Outlet />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user