feat: profile page

This commit is contained in:
2025-04-02 16:46:20 +03:00
parent f3c983be6f
commit 0843e4b20d
4 changed files with 36 additions and 10 deletions

13
src/components/layout.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { FunctionComponent } from "preact";
import Menu from "./menu";
const Layout: FunctionComponent = (props) => {
return (
<div class="flex min-w-screen flex-row justify-between">
{props.children}
<Menu />
</div>
);
};
export default Layout;