API & UI Menu Landing Page, Submenu Profile
This commit is contained in:
15
src/app/api/[[...slugs]]/_lib/landing_page/index.ts
Normal file
15
src/app/api/[[...slugs]]/_lib/landing_page/index.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import Elysia from "elysia";
|
||||
import MediaSosial from "./profile/media-sosial";
|
||||
import ProgramInovasi from "./profile/program-inovasi";
|
||||
import PejabatDesa from "./profile/pejabat-desa";
|
||||
|
||||
const LandingPage = new Elysia({
|
||||
prefix: "/api/landingpage",
|
||||
tags: ["Landing Page/Profile"]
|
||||
})
|
||||
|
||||
.use(MediaSosial)
|
||||
.use(ProgramInovasi)
|
||||
.use(PejabatDesa)
|
||||
|
||||
export default LandingPage
|
||||
Reference in New Issue
Block a user