tambahannya
This commit is contained in:
8
src/app/darmasaba/(pages)/desa/[sub]/page.tsx
Normal file
8
src/app/darmasaba/(pages)/desa/[sub]/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return <div>
|
||||
{sub}
|
||||
</div>
|
||||
}
|
||||
7
src/app/darmasaba/(pages)/desa/page.tsx
Normal file
7
src/app/darmasaba/(pages)/desa/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return <Stack>
|
||||
desa
|
||||
</Stack>
|
||||
}
|
||||
5
src/app/darmasaba/(pages)/ekonomi/[sub]/page.tsx
Normal file
5
src/app/darmasaba/(pages)/ekonomi/[sub]/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
export default function Page() {
|
||||
return <div>
|
||||
ekonomi
|
||||
</div>
|
||||
}
|
||||
8
src/app/darmasaba/(pages)/ekonomi/page.tsx
Normal file
8
src/app/darmasaba/(pages)/ekonomi/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return <Stack>
|
||||
{sub}
|
||||
</Stack>
|
||||
}
|
||||
6
src/app/darmasaba/(pages)/inovasi/[sub]/page.tsx
Normal file
6
src/app/darmasaba/(pages)/inovasi/[sub]/page.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return <div>
|
||||
{sub}
|
||||
</div>
|
||||
}
|
||||
7
src/app/darmasaba/(pages)/inovasi/page.tsx
Normal file
7
src/app/darmasaba/(pages)/inovasi/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return <Stack>
|
||||
inovasi
|
||||
</Stack>
|
||||
}
|
||||
8
src/app/darmasaba/(pages)/keamanan/[sub]/page.tsx
Normal file
8
src/app/darmasaba/(pages)/keamanan/[sub]/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return (
|
||||
<div>
|
||||
<h1>{sub}</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
src/app/darmasaba/(pages)/keamanan/page.tsx
Normal file
7
src/app/darmasaba/(pages)/keamanan/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return <Stack>
|
||||
keamanan
|
||||
</Stack>
|
||||
}
|
||||
8
src/app/darmasaba/(pages)/kesehatan/[sub]/page.tsx
Normal file
8
src/app/darmasaba/(pages)/kesehatan/[sub]/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return (
|
||||
<div>
|
||||
{sub}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
src/app/darmasaba/(pages)/kesehatan/page.tsx
Normal file
7
src/app/darmasaba/(pages)/kesehatan/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return <Stack>
|
||||
kesehatan
|
||||
</Stack>
|
||||
}
|
||||
8
src/app/darmasaba/(pages)/lingkungan/[sub]/page.tsx
Normal file
8
src/app/darmasaba/(pages)/lingkungan/[sub]/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return <div>
|
||||
{sub}
|
||||
</div>
|
||||
}
|
||||
7
src/app/darmasaba/(pages)/lingkungan/page.tsx
Normal file
7
src/app/darmasaba/(pages)/lingkungan/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return <Stack>
|
||||
lingkungan
|
||||
</Stack>
|
||||
}
|
||||
6
src/app/darmasaba/(pages)/module/[sub]/page.tsx
Normal file
6
src/app/darmasaba/(pages)/module/[sub]/page.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return <div>
|
||||
{sub}
|
||||
</div>
|
||||
}
|
||||
15
src/app/darmasaba/(pages)/module/page.tsx
Normal file
15
src/app/darmasaba/(pages)/module/page.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
|
||||
import { Stack } from "@mantine/core"
|
||||
import { useSnapshot } from "valtio"
|
||||
import stateNav from "@/state/state-nav"
|
||||
|
||||
export default function Page() {
|
||||
const { module, isSearch } = useSnapshot(stateNav)
|
||||
|
||||
return (
|
||||
<Stack h={"100vh"} >
|
||||
{JSON.stringify({ module, isSearch })}
|
||||
</Stack>
|
||||
)
|
||||
}
|
||||
8
src/app/darmasaba/(pages)/pendidikan/[sub]/page.tsx
Normal file
8
src/app/darmasaba/(pages)/pendidikan/[sub]/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return (
|
||||
<div>
|
||||
<h1>{sub}</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
src/app/darmasaba/(pages)/pendidikan/page.tsx
Normal file
7
src/app/darmasaba/(pages)/pendidikan/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return <Stack>
|
||||
pendidikan
|
||||
</Stack>
|
||||
}
|
||||
Reference in New Issue
Block a user