2026-03-18 03:26:43 +02:00
|
|
|
import classes from "./Header.module.css";
|
2026-03-21 19:50:29 +02:00
|
|
|
import Profile from "./components/Profile";
|
|
|
|
|
import Settings from "./components/Settings";
|
2026-03-18 03:26:43 +02:00
|
|
|
|
|
|
|
|
export default function Header() {
|
2026-03-21 19:50:29 +02:00
|
|
|
return (
|
|
|
|
|
<header className={classes.header}>
|
|
|
|
|
<div className={classes.content}>
|
|
|
|
|
<Profile />
|
|
|
|
|
<Settings />
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
);
|
2026-03-18 03:26:43 +02:00
|
|
|
}
|