feat(landing page): buat komponen landing page

This commit is contained in:
2023-07-29 10:19:05 +08:00
parent 2444b68e4f
commit 38cb10da4a
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { LandingPage } from "./landing-page";
export default LandingPage;

View File

@@ -0,0 +1,11 @@
"use client"
import { Box } from "@mantine/core"
export function LandingPage(){
return <>
<Box>
ini Landing
</Box>
</>
}