- Add MetedataEditor for meta inputs
- Add toggle between editor modes
- Add Breadcrumb for clearer navigation
- Add custom tool for formatting inline code in WysiwygEditor
- Add PostCard component
- Add WysiwygEditor component
- Use 'front-matter' to parse front matter in markdown files for metadata instead of using redundant data objects
This commit addresses several issues related to the login flow:
- Corrects the `isLoggedIn` variable to use `setIsLoggedIn` in `App.jsx`.
- Passes `onLogin` and `isLoggedIn` props to `CampfireAppBar`.
- Enables logout functionality in `AppBar.jsx`.
- Modifies `AppRoutes.jsx` to conditionally render `CampfireAppBar`.
- Converts pages to use `React.forwardRef` for page transitions.
- Fixes the `useState` import in `App.jsx`.
- Moves `NotificationGroup` to the top of the form in `LoginComponent.jsx` to prevent overlap.
- Corrects the logo path in `LoginPage.jsx`.
- Improves input accessibility with a border in `LoginComponent.jsx`.
This commit sets up the foundation for the new dashboard application by
implementing the main component structure, routing, and a basic UI shell with
KendoReact components.
- Set up the main application shell
- Implement a routing system with React Router
- Build a new App Bar component
- Create page placeholders for all routes
- Corrected various import and export errors