diff --git a/src/components/Summary.astro b/src/components/Summary.astro new file mode 100644 index 0000000..517d02a --- /dev/null +++ b/src/components/Summary.astro @@ -0,0 +1,38 @@ +--- +interface Props { + url: string; + date: Date; + title: string; + tags: string[]; + description: string; +} + +const { url, date, title, tags, description } = Astro.props; +--- +
\ No newline at end of file