Skip to content

Commit

Permalink
decorations: update Nitro Exclusives description and styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsPi3141 committed Jan 25, 2025
1 parent a86ecb8 commit aaa2964
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/data/decorations.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const decorationsData = [
{
n: "Nitro Exclusives ",
d: "Miscellaneous decorations and quest rewards.",
n: "Nitro Exclusives",
d: "Decorations only available to Nitro subscribers.",
b: {
i: [
{
Expand Down
3 changes: 3 additions & 0 deletions app/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
font-family: "ABC Ginto Nord";
letter-spacing: 1px;
}
.nitro-font {
font-family: "Urfa";
}

*::selection {
background: #5865f2;
Expand Down
10 changes: 9 additions & 1 deletion app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,15 @@ const App = ({ ffmpegRef, isServer }) => {
: "#fff",
}}
>
{category.n}
{category.n.toLowerCase().includes("nitro") ? (
<>
<span className="text-4xl uppercase nitro-font">
{category.n}
</span>
</>
) : (
category.n
)}
</p>
)}
</>
Expand Down

0 comments on commit aaa2964

Please sign in to comment.