diff --git a/src/app/(application)/home/page.tsx b/src/app/(application)/home/page.tsx new file mode 100644 index 0000000..f1e2ec6 --- /dev/null +++ b/src/app/(application)/home/page.tsx @@ -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 ( + <> + + + ); +} + +export default Page; diff --git a/src/app/(application)/layout.tsx b/src/app/(application)/layout.tsx deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/(auth)/verification/page.tsx b/src/app/(auth)/verification/page.tsx new file mode 100644 index 0000000..de28044 --- /dev/null +++ b/src/app/(auth)/verification/page.tsx @@ -0,0 +1,6 @@ +import { ViewVerification } from "@/module/auth"; +import React from "react"; + +export default function Verification() { + return ; +} diff --git a/src/app/(auth)/welcome/page.tsx b/src/app/(auth)/welcome/page.tsx new file mode 100644 index 0000000..eeca370 --- /dev/null +++ b/src/app/(auth)/welcome/page.tsx @@ -0,0 +1,8 @@ +import { ViewWelcome } from "@/module/auth"; +import React from "react"; + +function Page() { + return ; +} + +export default Page; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e33e51..da5bd36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,24 @@ -import '@mantine/core/styles.css'; - -import { ColorSchemeScript, MantineProvider } from '@mantine/core'; +import "@mantine/core/styles.css"; +import { + Box, + ColorSchemeScript, + Container, + MantineProvider, + rem, +} from "@mantine/core"; +import { WARNA } from "@/module/_global"; +import { Lato } from "next/font/google"; export const metadata = { - title: 'My Mantine app', - description: 'I have followed setup instructions carefully', + title: "SISTEM DESA MANDIRI", + description: "I have followed setup instructions carefully", }; +const LatoFont = Lato({ + subsets: ["latin"], + weight: ["300", "400", "700", "900"], +}); + export default function RootLayout({ children, }: { @@ -17,9 +29,15 @@ export default function RootLayout({ - - {children} + + + + + {children} + + + ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0e61e62..fcd135f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,12 +1,10 @@ -import { Box, Text } from "@mantine/core"; -import Image from "next/image"; +import { ViewLogin } from "@/module/auth"; +import { Box, Image, rem, Stack, Text } from "@mantine/core"; export default function Home() { return ( <> - - AWAL BRANCH - + ); }