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; +--- +