diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-25 20:26:52 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-25 20:26:52 +0200 |
| commit | 416af8ffde9f0eaae0d3d51c95b5e05e5749273b (patch) | |
| tree | 0fe614a00b742a4e2ec39d8285bef1d646ca00cc /src | |
| parent | 6122f1ec8d93a4bdc45b84daf5eecc97e718ef93 (diff) | |
Add trailing slashes
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Navigation.tsx | 4 | ||||
| -rw-r--r-- | src/layouts/Layout.astro | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index 9146d68..e9d0f5b 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -70,10 +70,10 @@ function NavLinks({ mobile = false }: { mobile?: boolean }) { <a href="/" className={linkClass}> CIDR Calculator </a> - <a href="/subnet-guide" className={linkClass}> + <a href="/subnet-guide/" className={linkClass}> Subnet Guide </a> - <a href="/embed-widget" className={linkClass}> + <a href="/embed-widget/" className={linkClass}> Embed </a> <a diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 4cccd3f..956bedd 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -129,21 +129,21 @@ const { <ul class="space-y-2 text-sm"> <li> <a - href="/subnet-guide" + href="/subnet-guide/" class="text-gray-400 hover:text-white" >Subnet Guide</a > </li> <li> <a - href="/embed-widget" + href="/embed-widget/" class="text-gray-400 hover:text-white" >Embed Widget</a > </li> <li> <a - href="/privacy-policy" + href="/privacy-policy/" class="text-gray-400 hover:text-white" >Privacy Policy</a > @@ -162,14 +162,14 @@ const { </li> <li> Created by <a - href="https://yuv.al" + href="https://yuv.al/" class="text-gray-400 hover:text-white" >Yuval Adam</a > </li> <li> Operated by <a - href="https://magicmonad.com" + href="https://magicmonad.com/" class="text-gray-400 hover:text-white" >Magic Monad</a > |
