Skip to content

Commit

Permalink
Fix capitalization of links
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLazySquid committed Jan 15, 2025
1 parent ff88dce commit 26f66fa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions site/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
site: 'https://thelazysquid.github.io',
base: 'gimloader',
base: 'Gimloader',
integrations: [starlight({
title: 'Gimloader',
social: {
Expand All @@ -21,7 +21,7 @@ export default defineConfig({
slug: 'setup'
}
],
favicon: '/gimloader/icon.ico',
favicon: '/Gimloader/icon.ico',
components: {
ThemeProvider: './src/components/ThemeProvider.astro',
ThemeSelect: './src/components/ThemeSelect.astro'
Expand Down
4 changes: 2 additions & 2 deletions site/src/components/Install.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
</h1>
<p>
Follow the instructions
<a href="/gimloader/setup"
<a href="/Gimloader/setup"
class="underline text-blue-600"
target="_blank" rel="noopener noreferrer">
here
Expand All @@ -152,7 +152,7 @@
<p class="pt-3 text-xl">
This page is for installing Gimloader plugins from a link.
If you don't have a link to a plugin, there is nothing to do here.
<a class="underline cursor-pointer" href="/gimloader">Go home?</a>
<a class="underline cursor-pointer" href="/Gimloader">Go home?</a>
</p>
{/if}
{/if}
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/Reroute.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
const installUrl = searchParams.get('installUrl');
if(installUrl) {
location.href = `/gimloader/install${location.search}`;
location.href = `/Gimloader/install${location.search}`;
}
</script>
2 changes: 1 addition & 1 deletion site/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ hero:
tagline: Modify Gimkit within your browser
actions:
- text: How to Install
link: /gimloader/setup
link: /Gimloader/setup
icon: right-arrow
---

Expand Down
2 changes: 1 addition & 1 deletion site/src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import '../lib/app.css'
<html lang="en" class="h-full dark">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="/gimloader/icom.ico" />
<link rel="icon" type="image/png" href="/Gimloader/icom.ico" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Install | Gimloader</title>
Expand Down

0 comments on commit 26f66fa

Please sign in to comment.