summaryrefslogtreecommitdiff
path: root/src/components/NavigationComponent.astro
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-02-27 13:38:06 +0530
committerBobby <[email protected]>2026-02-27 13:38:06 +0530
commit968c54505dc53a787967a87b4a6bcc2e2475cd47 (patch)
tree0047d7b36c5444fd204387fc0481e6b2139e386f /src/components/NavigationComponent.astro
parent9246437b4b9f56af9c8671a9b26d37323829bb32 (diff)
downloadpagoda-968c54505dc53a787967a87b4a6bcc2e2475cd47.tar.xz
pagoda-968c54505dc53a787967a87b4a6bcc2e2475cd47.zip
fresh start: archive old astro site, add nekoweb deploy pipeline
Diffstat (limited to 'src/components/NavigationComponent.astro')
-rw-r--r--src/components/NavigationComponent.astro29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/components/NavigationComponent.astro b/src/components/NavigationComponent.astro
deleted file mode 100644
index 9987c2f..0000000
--- a/src/components/NavigationComponent.astro
+++ /dev/null
@@ -1,29 +0,0 @@
----
-const { title, variation, bordered = true } = Astro.props;
----
-
-<section class="saira uppercase my-4">
- <div class="text-xl flex flex-row gap-2 justify-center items-center">
- <div class={`${
- variation === "alternate" ? "bg-pagodapink" : "bg-pagodapurple"
- }
- rounded-l-2xl px-4 h-6`}></div>
- <div>{title}</div>
- <div class={`${
- variation === "alternate" ? "bg-pagodapurple" : "bg-pagodapink"
- } ${
- bordered ? "rounded-tr-2xl" : "rounded-r-2xl"
- }
- flex-grow h-6`}></div>
- </div>
- <div class={`
- ${
- bordered ? variation === "alternate" ? "border-pagodapurple bg-pagodapurple" : "border-pagodapink bg-pagodapink" : ""
- }
- ${
- bordered ? "border-r-8 border-b-2 border-solid relative bottom-1" : ""
- }
- rounded-br ml-8`}>
- <slot />
- </div>
-</section> \ No newline at end of file