Dashboard
this is the main page of the application and contains most of the content inside of it
the Dashboard has two separated versions one for the guest user <GuestDashboard />
and the other for the logged in user <UserDashboard />
they both have the same design but with some differences.
the page was designed to have side menu, header bar and content area.
the content area is occupied with a <Content />
component to fit all other components inside of it.
The logos of the news papers were designed as SVG files and stored in the path src/svg/name.svg
and they need to be included this way
import { ReactComponent as KlLogo } from '../svg/kauppalehti.svg';
Last updated
Was this helpful?