diff --git a/src/Components/Templates/CardPage.tsx b/src/Components/Templates/CardPage.tsx index 558fc4ef..0652d622 100644 --- a/src/Components/Templates/CardPage.tsx +++ b/src/Components/Templates/CardPage.tsx @@ -3,9 +3,10 @@ import * as React from "react" import {TitleCard} from "./TitleCard" -export function CardPage({title,children} : { +export function CardPage({title,children, parent} : { title: string, children?: React.ReactNode, + parent?: {name: string, url: string} }) { @@ -15,6 +16,7 @@ export function CardPage({title,children} : {