diff --git a/public/assets/book-outline.svg b/public/assets/book-outline.svg new file mode 100644 index 0000000..9f6133c --- /dev/null +++ b/public/assets/book-outline.svg @@ -0,0 +1 @@ +Book \ No newline at end of file diff --git a/src/components/Article.astro b/src/components/Article.astro new file mode 100644 index 0000000..6f6f726 --- /dev/null +++ b/src/components/Article.astro @@ -0,0 +1,80 @@ +--- +const {title , body} = Astro.props; +--- + + +
+
{title}
+ +
+
{body}
+
+ +
+ + \ No newline at end of file