style : add app

This commit is contained in:
lukman
2024-07-03 14:28:47 +08:00
parent c4c53547e9
commit b26f184b53
6 changed files with 57 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
import LayoutNavbarHome from '@/module/_global/layout/layout_navbar_home';
import { ViewHome } from '@/module/home';
import { Flex, Group, Text } from '@mantine/core';
import React from 'react';
function Page() {
return (
<>
<ViewHome />
</>
);
}
export default Page;