diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-08 21:41:36 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-08 21:41:36 -0500 |
| commit | c1b2794611548ef1fa30055a91926c4074f2f63e (patch) | |
| tree | 85f218f28d933e310196095a724463afc037d8ad /src/layouts/Default.astro | |
| parent | dc6e36f13c8f94b148f6a3ec8378c66e5fd5034a (diff) | |
| download | personal-website-c1b2794611548ef1fa30055a91926c4074f2f63e.tar.gz personal-website-c1b2794611548ef1fa30055a91926c4074f2f63e.tar.bz2 personal-website-c1b2794611548ef1fa30055a91926c4074f2f63e.zip | |
Fixed overflow for mobile, loading in gh projects
Diffstat (limited to 'src/layouts/Default.astro')
| -rw-r--r-- | src/layouts/Default.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index 15d3c78..db559c0 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -43,7 +43,7 @@ const date = new Date(); <slot /> <footer> <p>Made with {Astro.generator} and Hosted on Vercel</p> - <p>Copyright © {date.getFullYear()} Andrew Lee. <a href="https://github.com/Alee14/personal-website">View source code.</a></p> + <p>Copyright © {date.getFullYear()} Andrew Lee. <a href="https://github.com/Alee14/personal-website" target="_blank">View source code.</a></p> </footer> </div> </body> |
