Skip to content

Commit

Permalink
Fix capitalisation, add releases button for translator (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
KTrain5169 authored Oct 15, 2024
1 parent fd4ab7b commit f6867a2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/layouts/Default.astro
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ if (title === "" || title === undefined) {
<VitalLink external={true} to="https://discord.gg/wncdz7e8jy"
><MessageSquare />Discord</VitalLink
>
<VitalLink external={true} to="https://github.com/usevital"><Github />Github</VitalLink>
<VitalLink external={true} to="https://github.com/usevital"><Github />GitHub</VitalLink>
</div>
<div class="flex flex-col gap-2 border-l bg-brand-rose-dark p-6">
<span class="font-bold">Extra</span>
Expand Down
17 changes: 12 additions & 5 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import Default from "../layouts/Default.astro";
>
<div class="flex flex-row flex-wrap items-center gap-2">
<Button to="https://modrinth.com/modpack/vital/" external={true} showIcon={true}> Modrinth </Button>
<Button to="https://github.com/intergrav/vital/" external={true} showIcon={true}> Github </Button>
<Button to="https://github.com/intergrav/vital/" external={true} showIcon={true}> GitHub </Button>
</div>
</div>
<div class="flex w-full flex-col gap-2 border-b bg-gradient-to-bl from-black to-brand-blue-dark p-8">
Expand All @@ -44,7 +44,7 @@ import Default from "../layouts/Default.astro";
classList="bg-brand-blue"
external={true}
showIcon={true}>
Github
GitHub
</Button>
</div>
</div>
Expand All @@ -68,7 +68,7 @@ import Default from "../layouts/Default.astro";
classList="bg-brand-green"
external={true}
showIcon={true}>
Github
GitHub
</Button>
</div>
</div>
Expand All @@ -77,15 +77,22 @@ import Default from "../layouts/Default.astro";
>Translator<Logo fill={true} type="ward" /></span
>
<span
>A python script that can help you convert and manipulate your text in many different ways.</span
>A Python script that can help you convert and manipulate your text in many different ways.</span
>
<div class="flex flex-row flex-wrap items-center gap-2">
<Button
to="https://github.com/usevital/translator"
classList="bg-cyan-700"
external={true}
showIcon={true}>
Github
GitHub
</Button>
<Button
to="https://github.com/usevital/translator/releases"
classList="bg-cyan-700"
external={true}
showIcon={true}>
Releases
</Button>
</div>
</div>
Expand Down

0 comments on commit f6867a2

Please sign in to comment.