Deskripsi:
- Feature splash screen
- Create login page
This commit is contained in:
2023-10-02 09:21:44 +08:00
parent 6b777f905a
commit 494b65418d
9 changed files with 82 additions and 15 deletions

View File

@@ -0,0 +1,3 @@
import HomeView from "./view";
export {HomeView}

View File

@@ -0,0 +1,11 @@
"use client";
import { Title } from "@mantine/core";
export default function HomeView() {
return (
<>
<Title>Home</Title>
</>
);
}