#Job done

## feat
- Fix bug login
### No issuue
This commit is contained in:
2024-03-01 14:36:02 +08:00
parent b1395a8ded
commit 0f2280f116
31 changed files with 698 additions and 192 deletions

View File

@@ -0,0 +1,43 @@
"use client";
import {
AppShell,
Center,
Footer,
Header,
Image,
Paper,
Text,
} from "@mantine/core";
import React from "react";
export default function LayoutLogin({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppShell
// header={
// <Header height={180} sx={{ borderStyle: "none" }}>
// <Paper h={180} sx={{ borderRadius: "0 0 30px 30px" }}>
// <Center h={"100%"}>
// <Image
// mt={"xl"}
// height={130}
// width={130}
// alt="logo"
// src={"/aset/logo/logo-hipmi.png"}
// />
// </Center>
// </Paper>
// </Header>
// }
>
{children}
</AppShell>
</>
);
}