2025-11-25 17:13:16 +07:00
|
|
|
import NavLinks from '@/app/ui/nav-links'
|
|
|
|
|
import styles from '@/app/page.module.scss'
|
2025-11-26 14:01:35 +07:00
|
|
|
import HeaderPanel from '../ui/header/headerPanel';
|
2025-11-25 17:13:16 +07:00
|
|
|
|
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex">
|
|
|
|
|
<NavLinks />
|
2025-11-26 14:01:35 +07:00
|
|
|
<div className={`${styles.mainContainter}`}>
|
|
|
|
|
<HeaderPanel />
|
|
|
|
|
<main>
|
|
|
|
|
{children}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
2025-11-25 17:13:16 +07:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|