diff --git a/app/data/decorations.js b/app/data/decorations.js index 2784a94..4fd881c 100644 --- a/app/data/decorations.js +++ b/app/data/decorations.js @@ -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: [ { diff --git a/app/globals.scss b/app/globals.scss index 9c4888a..4c4c0ea 100644 --- a/app/globals.scss +++ b/app/globals.scss @@ -20,6 +20,9 @@ font-family: "ABC Ginto Nord"; letter-spacing: 1px; } +.nitro-font { + font-family: "Urfa"; +} *::selection { background: #5865f2; diff --git a/app/page.jsx b/app/page.jsx index 2e66163..b79c356 100644 --- a/app/page.jsx +++ b/app/page.jsx @@ -374,7 +374,15 @@ const App = ({ ffmpegRef, isServer }) => { : "#fff", }} > - {category.n} + {category.n.toLowerCase().includes("nitro") ? ( + <> + + {category.n} + + + ) : ( + category.n + )}

)}