feat: add not found pages for boards (#1671)

This commit is contained in:
Meier Lukas
2024-12-16 17:25:44 +01:00
committed by GitHub
parent b7b5da654b
commit 8e4d67c3eb
11 changed files with 148 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
import definition from "../../boards/(content)/(home)/_definition";
const { layout } = definition;
export default layout;

View File

@@ -0,0 +1,7 @@
import definition from "../../boards/(content)/(home)/_definition";
const { generateMetadataAsync: generateMetadata, page } = definition;
export default page;
export { generateMetadata };

View File

@@ -0,0 +1,3 @@
import HomeBoardNotFoundPage from "../boards/(content)/not-found";
export default HomeBoardNotFoundPage;