monorepo/apps/web/src/app/_components/header/index.tsx

19 lines
608 B
TypeScript
Raw Normal View History

2025-03-31 19:43:56 +08:00
import { HeaderNav } from "./headerNav";
2025-04-19 12:46:08 +08:00
import { HeaderTools } from "./headerTools";
2024-11-04 16:15:49 +08:00
2024-10-29 11:59:38 +08:00
export const Header = () => {
2025-03-31 19:43:56 +08:00
return (
2025-04-19 12:46:08 +08:00
<header className=" tw-flex tw-justify-between tw-items-baseline tw-py-5 tw-bg-slate-200 dark:tw-bg-slate-900 ">
<div className=" tw-flex-1 tw-flex tw-flex-row tw-ml-8 ">
<p>logo</p>
2025-03-31 19:43:56 +08:00
</div>
2025-04-19 12:46:08 +08:00
<div className=" tw-flex tw-flex-auto tw-flex-col tw-w-3/5 ">
2025-03-31 19:43:56 +08:00
<HeaderNav></HeaderNav>
</div>
2025-04-19 12:46:08 +08:00
<div className=" tw-flex-1 tw-flex tw-flex-row-reverse tw-mr-8 ">
<HeaderTools></HeaderTools>
2025-03-31 19:43:56 +08:00
</div>
2025-04-19 12:46:08 +08:00
</header>
2025-03-31 19:43:56 +08:00
);
2024-10-29 11:59:38 +08:00
};