diff --git a/app/listen/[collectionid]/page.tsx b/app/listen/[collectionid]/page.tsx index e69de29..26baf5d 100644 --- a/app/listen/[collectionid]/page.tsx +++ b/app/listen/[collectionid]/page.tsx @@ -0,0 +1,3 @@ +export default function ListenByCollectionID() { + return
ListenByCollectionID
; +} diff --git a/app/listen/page.tsx b/app/listen/page.tsx index e69de29..b32d406 100644 --- a/app/listen/page.tsx +++ b/app/listen/page.tsx @@ -0,0 +1,3 @@ +export default function ListenIndex() { + return
ListenIndex
; +} diff --git a/app/read/[postid]/page.tsx b/app/read/[postid]/page.tsx index e69de29..0962fb6 100644 --- a/app/read/[postid]/page.tsx +++ b/app/read/[postid]/page.tsx @@ -0,0 +1,3 @@ +export default function BlogPost() { + return
BlogPost
; +} diff --git a/app/read/page.tsx b/app/read/page.tsx index e69de29..90ca152 100644 --- a/app/read/page.tsx +++ b/app/read/page.tsx @@ -0,0 +1,3 @@ +export default function BlogIndex() { + return
BlogIndex
; +}