diff --git a/src/components/templates/Route.module.scss b/src/components/templates/Route.module.scss index 3ca664d..00280f8 100644 --- a/src/components/templates/Route.module.scss +++ b/src/components/templates/Route.module.scss @@ -7,4 +7,9 @@ h1 { margin: 0; } + + p { + margin-top: $spacer / 2; + font-size: $font-size-large; + } } diff --git a/src/components/templates/Route.tsx b/src/components/templates/Route.tsx index 7d71ba5..5153158 100644 --- a/src/components/templates/Route.tsx +++ b/src/components/templates/Route.tsx @@ -6,11 +6,13 @@ import meta from '../../data/meta.json' const Route = ({ title, + description, wide, children, className }: { title: string + description?: string children: any wide?: boolean className?: string @@ -18,11 +20,13 @@ const Route = ({
{description}
}