diff --git a/.gitignore b/.gitignore index 438657a..a195864 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ yarn-error.log* pnpm-debug.log* lerna-debug.log* + node_modules dist dist-ssr diff --git a/src/components/icons/ChartIcon.tsx b/src/components/icons/ChartIcon.tsx new file mode 100644 index 0000000..0ad054c --- /dev/null +++ b/src/components/icons/ChartIcon.tsx @@ -0,0 +1,19 @@ +function ChartIcon() { + return ( + + + + ) +} + + +export default ChartIcon; \ No newline at end of file diff --git a/src/pages/FavouritesPage.tsx b/src/pages/FavouritesPage.tsx index 1c9e248..f047c92 100644 --- a/src/pages/FavouritesPage.tsx +++ b/src/pages/FavouritesPage.tsx @@ -1,5 +1,49 @@ +import clsx from 'clsx'; +import ProjectSelect from '../components/ProjectSelect'; +import { projects } from '../data/projects'; +import Select from '../components/ui/Select'; +import Button from '../components/ui/Button'; +import ChartIcon from '../components/icons/ChartIcon'; + function FavouritesPage() { - return
FavouritesPage
; + return ( +
+
+
+

+ Favorites +

+ {}} + defaultProject={projects[0]} + /> +
+
+
+
+