chore: rename component tag to label

+2 -2
src/components/Contributions.astro
···
---
-
import Tag from "./Tag.astro"
+
import Label from "./Label.astro"
import GitHubCalendar from "./GithubCalendar"
---
<div class="flex flex-col p-8 border-ctp-surface0 border w-full h-min relative">
-
<Tag name="Contributions"/>
+
<Label name="Contributions"/>
<GitHubCalendar client:load username="imabanana80"/>
</div>
+2 -2
src/components/Pinned.astro
···
---
-
import Tag from "./Tag.astro"
+
import Label from "./Label.astro"
import Item from "./PinnedItem.astro"
---
<div class="flex flex-col p-8 border-ctp-surface0 border w-full h-min relative">
-
<Tag name="Pinned"/>
+
<Label name="Pinned"/>
<div class="flex flex-wrap">
<Item
type="project"
-1
src/components/PinnedItem.astro
···
<Badgebar badges={badges} size="20"/>
</div>
</div>
-
+7 -7
src/components/Profile.astro
···
---
-
import Tag from '../components/Tag.astro';
+
import Label from '../components/Label.astro';
import Quote from '../components/Quote.astro'
import { Github, Spool, Icon } from '@lucide/astro'
import { butterfly } from '@lucide/lab'
···
</span>
</span>
<span class="relative p-3 mt-4 border border-ctp-surface0 text-sm">
-
<Tag name="Currently"/>
+
<Label name="Currently"/>
Switching to endeavoros | Open for Hire
</span>
<span class="relative p-3 mt-4 border border-ctp-surface0 text-sm">
-
<Tag name="About"/>
+
<Label name="About"/>
Hi, I'm Banana, a computer science student and software developer that specialises in
Web Development as well as developing and hosting Minecraft Events.
</span>
<span class="relative p-3 mt-4 border border-ctp-surface0 text-ctp-subtext0 text-sm">
-
<Tag name="Time"/>
+
<Label name="Time"/>
<span id="clock" class="text-ctp-text"></span> (SGT/UTC+8)
</span>
<span class="relative p-3 mt-4 border border-ctp-surface0 text-ctp-subtext0 text-sm">
-
<Tag name="Languages"/>
+
<Label name="Languages"/>
<span>Java, Python, Golang, HTML/CSS/TS</span>
</span>
<span class="relative p-3 -mt-px border border-ctp-surface0 text-ctp-subtext0 text-sm">
-
<Tag name="Frameworks"/>
+
<Label name="Frameworks"/>
<span>PaperMC, Astro, Tailwindcss</span>
</span>
<span class="relative p-3 -mt-px border border-ctp-surface0 text-ctp-subtext0 text-sm">
-
<Tag name="Tools"/>
+
<Label name="Tools"/>
<span>Neovim, IntellIJ, Figma, VSC*de</span>
</span>
<div class="mt-4 flex">
+2 -2
src/components/Quote.astro
···
---
-
import Tag from "../components/Tag.astro"
+
import Label from "../components/Label.astro"
---
<script>
interface Quote {
···
quoteeElement.textContent = "- " + quote.quotee
</script>
<span class="relative p-3 -mt-px border border-ctp-surface0 text-ctp-subtext0 text-sm w-full">
-
<Tag name="Quote"/>
+
<Label name="Quote"/>
<div class="flex flex-col text-sm gap-1">
<span id="quote" class="italic"></span>
<span id="quotee" class="w-full text-right"></span>
src/components/Tag.astro src/components/Label.astro