diff --git a/frontend/frontend/src/components/Home/StatsRankSection.js b/frontend/frontend/src/components/Home/StatsRankSection.js index 74561c8a..1d66b205 100644 --- a/frontend/frontend/src/components/Home/StatsRankSection.js +++ b/frontend/frontend/src/components/Home/StatsRankSection.js @@ -20,8 +20,8 @@ const StatsRankSection = ({ selectedOption, setSelectedOption }) => { ]; return ( -
-

Select a rank style.

+
+

Select a progress style.

{ title: 'GitHub Stats Card', description: 'your overall GitHub statistics', imageSrc: `?&username=${userId}`, + demoCustomization: '&include_all_commits=true', cardType: 'stats', - demoCustomization: '', }, { title: 'Top Languages Card', diff --git a/frontend/frontend/src/pages/Home/stages/Theme.js b/frontend/frontend/src/pages/Home/stages/Theme.js index 199722bc..45323e5e 100644 --- a/frontend/frontend/src/pages/Home/stages/Theme.js +++ b/frontend/frontend/src/pages/Home/stages/Theme.js @@ -9,21 +9,33 @@ import { themes } from '../../../backend/themes/index'; const ThemeStage = ({ theme, setTheme, fullSuffix }) => { return (
- {Object.keys(themes).map((myTheme, index) => ( - - ))} + {Object.keys(themes) + .filter( + (myTheme) => + ![ + 'merko', + 'blue-green', + 'gotham', + 'blueberry', + 'outrun', + 'holi', + ].includes(myTheme), + ) + .map((myTheme, index) => ( + + ))}
); };