feat: finish Projects overview

This commit is contained in:
Stefan Imhoff
2023-05-16 20:19:09 +02:00
parent dc9bf2b618
commit bdb6f46e02
124 changed files with 509 additions and 34 deletions

View File

@@ -8,12 +8,13 @@ import PageFooter from '../components/PageFooter.astro';
export interface Props {
backLink?: string;
description?: string;
footer?: boolean;
header?: boolean;
title: string;
}
const { backLink, footer = true, header = true, title } = Astro.props;
const { backLink, footer = true, header = true, title, description } = Astro.props;
---
<!DOCTYPE html>