feat(landing page): buat komponen landing page
This commit is contained in:
5
src/modules/landing_page/index.tsx
Normal file
5
src/modules/landing_page/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
import { LandingPage } from "./landing-page";
|
||||
|
||||
export default LandingPage;
|
||||
|
||||
11
src/modules/landing_page/landing-page.tsx
Normal file
11
src/modules/landing_page/landing-page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client"
|
||||
|
||||
import { Box } from "@mantine/core"
|
||||
|
||||
export function LandingPage(){
|
||||
return <>
|
||||
<Box>
|
||||
ini Landing
|
||||
</Box>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user