From 3c0e66d41ceb5dcb66c5570308b472fddc161ad5 Mon Sep 17 00:00:00 2001 From: Mikayla Dobson Date: Thu, 5 Oct 2023 10:40:09 -0500 Subject: [PATCH] fix some build issues --- app/listen/[collectionid]/page.tsx | 3 +++ app/listen/page.tsx | 3 +++ app/read/[postid]/page.tsx | 3 +++ app/read/page.tsx | 3 +++ 4 files changed, 12 insertions(+) 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
; +}