diff --git a/README.md b/README.md index d004758..86cd9f8 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ Cozy is your modern-day reading assistant. ## Roadmap | Feature | Status | | --- | --- | -| Remove distractions| Done | -| Save to a Reading Library | In-Progress | -| PWA: Offline access to library | | +| Remove distractions| ✅ DONE | +| Save to a Reading Library | ✅ DONE | +| PWA: Offline access to library | 🛠️ In-progress | | AI insights | | | Browser Extensions | | diff --git a/src/components/Library.astro b/src/components/Library.astro new file mode 100644 index 0000000..34e0a82 --- /dev/null +++ b/src/components/Library.astro @@ -0,0 +1,65 @@ +--- +export interface Props { + postDivSelector: string +} + +const {postDivSelector} = Astro.props; +--- +
+ +
+ + + + \ No newline at end of file diff --git a/src/components/post.astro b/src/components/post.astro index 2e3dcf6..f09a26a 100644 --- a/src/components/post.astro +++ b/src/components/post.astro @@ -11,7 +11,7 @@ const datePublished = { article && ( -
+
{article.source && {article.source}} {article.title &&

{article.title}

} {(article.author || datePublished) && ( @@ -26,11 +26,6 @@ const datePublished = } +