diff --git a/README.md b/README.md index 105655f..18d37e8 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,6 @@ A parallax effect is applied on the webpages' background image. This effect can ## CSS Global Variables - `--color-base-X`: the current theme colors. X can be between 0 and 1000, available in increments of 50. -- `--font-serif`: by default, everything use sans-serif. Use this variable to make the font serif. ## Translations diff --git a/TODO.md b/TODO.md index d3623f5..7f2177c 100644 --- a/TODO.md +++ b/TODO.md @@ -3,13 +3,17 @@ ## Ongoing - [Analytics] Add analytics +- [Tooltips] Tooltip in under next element (example in timeline) +- [Language override] Maso actor is not focusable with keyboard nav ## Short term +- [Timeline] Improve layout/spacing on mobile - Display if a content has a source language - [JSLess] Display if a content is available in more than one language - Number of audio players seems limited (on Chrome and Firefox) - [RichTextContent] Handle relationship +- [Component] Make a metadata title component (combine with collectible custom info and table of content) - [RichTextContent] Add autolink block support ## Mid term @@ -25,6 +29,8 @@ ## Long term +- [WebManifest] Add shortcuts https://web.dev/patterns/web-apps/shortcuts +- [PWA] Rich install UI https://web.dev/patterns/web-apps/richer-install-ui/ - Try using CSS instead of JS for parallax effect - More data caching between the CMS and Astro - [Folders] Support for nameless section diff --git a/public/site.webmanifest b/public/site.webmanifest index 8e572d6..5f147c8 100644 --- a/public/site.webmanifest +++ b/public/site.webmanifest @@ -27,38 +27,5 @@ "name": "Accord's Library", "short_name": "Accord's Lib", - "start_url": ".", - - "shortcuts": [ - { - "name": "Library", - "url": "/library", - "description": "Browse all physical and digital media" - }, - { - "name": "Contents", - "url": "/contents", - "description": "Explore all content and filter by type or category" - }, - { - "name": "Wiki", - "url": "/wiki", - "description": "An encyclopedia for everything related to DrakeNieR" - }, - { - "name": "Chronicles", - "url": "/chronicles", - "description": "Experience all events and content in chronological order" - }, - { - "name": "News", - "url": "/news", - "description": "All the latest info" - }, - { - "name": "Gallery", - "url": "/gallery", - "description": "Thousands of offcial artworks" - } - ] + "start_url": "." } diff --git a/src/components/AppLayout/components/AppLayoutTitle.astro b/src/components/AppLayout/components/AppLayoutTitle.astro index 8c53e1a..1faf1d6 100644 --- a/src/components/AppLayout/components/AppLayoutTitle.astro +++ b/src/components/AppLayout/components/AppLayoutTitle.astro @@ -12,8 +12,14 @@ const { title, subtitle, pretitle } = Astro.props;