[PR #7464] [MERGED] feat: enhance github stars button to be better looking and more compact #6705

Closed
opened 2026-02-05 07:34:38 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/community-scripts/ProxmoxVE/pull/7464
Author: @BramSuurdje
Created: 9/8/2025
Status: Merged
Merged: 9/8/2025
Merged by: @MickLesk

Base: mainHead: redo-github-button


📝 Commits (2)

  • e9fd39d feat: enhance github stars button to be better looking and more compact to make mobile compatibility easier in the future
  • 5552013 feat: introduce a new Button component

📊 Changes

13 files changed (+1168 additions, -25 deletions)

View changed files

📝 frontend/components.json (+3 -0)
📝 frontend/package-lock.json (+90 -5)
📝 frontend/package.json (+3 -1)
frontend/src/components/animate-ui/components/buttons/button.tsx (+61 -0)
frontend/src/components/animate-ui/components/buttons/github-stars.tsx (+101 -0)
frontend/src/components/animate-ui/primitives/animate/github-stars.tsx (+206 -0)
frontend/src/components/animate-ui/primitives/animate/slot.tsx (+101 -0)
frontend/src/components/animate-ui/primitives/buttons/button.tsx (+36 -0)
frontend/src/components/animate-ui/primitives/effects/particles.tsx (+160 -0)
frontend/src/components/animate-ui/primitives/texts/sliding-number.tsx (+338 -0)
📝 frontend/src/components/navbar.tsx (+6 -19)
frontend/src/hooks/use-is-in-view.tsx (+27 -0)
frontend/src/lib/get-strict-context.tsx (+36 -0)

📄 Description

✍️ Description

NEW:
image

the new one also features some fancy animations

OLD:
image

Link: #

Prerequisites (X in brackets)

  • Self-review completed – Code follows project standards.
  • Tested thoroughly – Changes work as expected.
  • No security risks – No hardcoded secrets, unnecessary privilege escalations, or permission issues.

🛠️ Type of Change (X in brackets)

  • 🐞 Bug fix – Resolves an issue without breaking functionality.
  • New feature – Adds new, non-breaking functionality.
  • 💥 Breaking change – Alters existing functionality in a way that may require updates.
  • 🆕 New script – A fully functional and tested script or script set.
  • 🌍 Website update – Changes to website-related JSON files or metadata.
  • 🔧 Refactoring / Code Cleanup – Improves readability or maintainability without changing functionality.
  • 📝 Documentation update – Changes to README, AppName.md, CONTRIBUTING.md, or other docs.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/community-scripts/ProxmoxVE/pull/7464 **Author:** [@BramSuurdje](https://github.com/BramSuurdje) **Created:** 9/8/2025 **Status:** ✅ Merged **Merged:** 9/8/2025 **Merged by:** [@MickLesk](https://github.com/MickLesk) **Base:** `main` ← **Head:** `redo-github-button` --- ### 📝 Commits (2) - [`e9fd39d`](https://github.com/community-scripts/ProxmoxVE/commit/e9fd39d3547a65eedd253431e188210c5db6b786) feat: enhance github stars button to be better looking and more compact to make mobile compatibility easier in the future - [`5552013`](https://github.com/community-scripts/ProxmoxVE/commit/5552013824eb3e3e6a98509c2513ef8f5e39d73f) feat: introduce a new Button component ### 📊 Changes **13 files changed** (+1168 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `frontend/components.json` (+3 -0) 📝 `frontend/package-lock.json` (+90 -5) 📝 `frontend/package.json` (+3 -1) ➕ `frontend/src/components/animate-ui/components/buttons/button.tsx` (+61 -0) ➕ `frontend/src/components/animate-ui/components/buttons/github-stars.tsx` (+101 -0) ➕ `frontend/src/components/animate-ui/primitives/animate/github-stars.tsx` (+206 -0) ➕ `frontend/src/components/animate-ui/primitives/animate/slot.tsx` (+101 -0) ➕ `frontend/src/components/animate-ui/primitives/buttons/button.tsx` (+36 -0) ➕ `frontend/src/components/animate-ui/primitives/effects/particles.tsx` (+160 -0) ➕ `frontend/src/components/animate-ui/primitives/texts/sliding-number.tsx` (+338 -0) 📝 `frontend/src/components/navbar.tsx` (+6 -19) ➕ `frontend/src/hooks/use-is-in-view.tsx` (+27 -0) ➕ `frontend/src/lib/get-strict-context.tsx` (+36 -0) </details> ### 📄 Description <!--🛑 New scripts must be submitted to [ProxmoxVED](https://github.com/community-scripts/ProxmoxVED) for testing. PRs without prior testing will be closed. --> ## ✍️ Description NEW: <img width="711" height="70" alt="image" src="https://github.com/user-attachments/assets/6eb39563-1d4e-4c57-8019-208069b655ea" /> the new one also features some fancy animations OLD: <img width="818" height="56" alt="image" src="https://github.com/user-attachments/assets/57c7437d-d7ce-44f1-9bf8-47655cf2da94" /> ## 🔗 Related PR / Issue Link: # ## ✅ Prerequisites (**X** in brackets) - [x] **Self-review completed** – Code follows project standards. - [x] **Tested thoroughly** – Changes work as expected. - [x] **No security risks** – No hardcoded secrets, unnecessary privilege escalations, or permission issues. --- ## 🛠️ Type of Change (**X** in brackets) - [ ] 🐞 **Bug fix** – Resolves an issue without breaking functionality. - [x] ✨ **New feature** – Adds new, non-breaking functionality. - [ ] 💥 **Breaking change** – Alters existing functionality in a way that may require updates. - [ ] 🆕 **New script** – A fully functional and tested script or script set. - [ ] 🌍 **Website update** – Changes to website-related JSON files or metadata. - [ ] 🔧 **Refactoring / Code Cleanup** – Improves readability or maintainability without changing functionality. - [ ] 📝 **Documentation update** – Changes to `README`, `AppName.md`, `CONTRIBUTING.md`, or other docs. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 07:34:38 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#6705