diff --git a/readme.md b/readme.md index 5ef516a..2aeef0f 100644 --- a/readme.md +++ b/readme.md @@ -50,3 +50,5 @@ Source code for my personal website, [jamerrq.dev](https://jamerrq.dev). - [Typed CSS](https://typedcss.com/) - [CSS Peeps](https://css-peeps.com/) - [Tailwind Cheat Sheet](https://tailwindcomponents.com/cheatsheet/) +- [Astro View Transitions](https://docs.astro.build/en/guides/view-transitions/) +- [Astro View Transitions - Lifecycle Events](https://docs.astro.build/en/guides/view-transitions/#lifecycle-events) diff --git a/src/components/buttons.astro b/src/components/buttons.astro index 1034f61..05398eb 100644 --- a/src/components/buttons.astro +++ b/src/components/buttons.astro @@ -76,69 +76,81 @@ const BUTTON_STYLES = [ diff --git a/src/layouts/layout.astro b/src/layouts/layout.astro index 33cdc9f..8e69e1c 100644 --- a/src/layouts/layout.astro +++ b/src/layouts/layout.astro @@ -29,37 +29,36 @@ const BODY_CLASS = import.meta.env.MODE === 'development' ? 'debug-screens' : ''