2026-07-06 09:44:26 +00:00
|
|
|
import type { PropsWithChildren } from 'react'
|
2026-02-24 20:44:16 +00:00
|
|
|
import { Container } from '../shared'
|
|
|
|
|
|
2026-07-06 09:44:26 +00:00
|
|
|
const DeveloperLayout = ({ children }: PropsWithChildren) => {
|
2026-02-24 20:44:16 +00:00
|
|
|
return (
|
|
|
|
|
<Container>
|
|
|
|
|
<div className="flex flex-col lg:flex-row gap-8">
|
|
|
|
|
<div className="flex-1">{children}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</Container>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default DeveloperLayout
|