From 0e500764753c1eedbbd278820618962842e5cbe4 Mon Sep 17 00:00:00 2001 From: Fisher60 Date: Thu, 21 Dec 2023 14:50:57 -0600 Subject: [PATCH 1/5] use copyright symbol, add target _blank for anchor tags in footer --- src/components/Footer.astro | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index b2ebadd..e553e77 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -3,25 +3,25 @@

Yaksha - The Programming Language

-

Copyright (C) 2023 Bhathiya Perera

-

Website designed by AbandonTech

+

© 2023 YakshaLang

+

Website designed by AbandonTech

From 46c65fccc57c9bc794929a1768a55fe9b8ee3bae Mon Sep 17 00:00:00 2001 From: Fisher60 Date: Thu, 21 Dec 2023 14:52:56 -0600 Subject: [PATCH 2/5] add target _blank for navbar links to external sites It is better user experience for links that remove you from the website to open in a new browser tab. This way a user can explore and continue browsing the website easily after being linked to an external site. --- src/components/NavBar.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro index a62cbd8..685de67 100644 --- a/src/components/NavBar.astro +++ b/src/components/NavBar.astro @@ -27,7 +27,7 @@ const activePageStyling = (path: string) => path == currentPath ? "text-secondar
  • Docs
  • Tutorials
  • Demos
  • -
  • Playground
  • +
  • Playground
  • YAMA
  • Blog
  • @@ -42,7 +42,7 @@ const activePageStyling = (path: string) => path == currentPath ? "text-secondar
    Tutorials Demos - Playground + Playground
    Blog YAMA From b0a275e299630ed79556a39ac36b650ac2d5c5cd Mon Sep 17 00:00:00 2001 From: Fisher60 Date: Thu, 21 Dec 2023 16:00:37 -0600 Subject: [PATCH 3/5] used fixed size for navbar, add scrolling for lib page sidebar I have added a fixed size for the top navbar so that the height can be referenced in other pages, I have also added scrolling for the lib sidebar so that content is not cut off when too much drop-down content is displayed. --- src/components/NavBar.astro | 2 +- src/layouts/LibsLayout.astro | 26 ++++++++++++++------------ 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro index 685de67..0948075 100644 --- a/src/components/NavBar.astro +++ b/src/components/NavBar.astro @@ -11,7 +11,7 @@ const activePageStyling = (path: string) => path == currentPath ? "text-secondar ---