diff --git a/packages/frontend/src/components/App.tsx b/packages/frontend/src/components/App.tsx
index 67f2538..6f3b327 100644
--- a/packages/frontend/src/components/App.tsx
+++ b/packages/frontend/src/components/App.tsx
@@ -1,12 +1,13 @@
import * as React from 'react';
import { hot } from 'react-hot-loader';
-import { Route, Switch } from 'react-router';
+import { Route, Switch, Redirect } from 'react-router';
import { Router } from 'react-router-dom';
-import { APP_ROUTES, ERROR_404_PAGE } from '../util/approutes';
+import { APP_ROUTES, getLinkDisplayNameForPage, getLinkForPage, HOME_PAGE } from '../util/approutes';
import history from '../util/history';
import { FeatureFlagsProvider } from 'elite-feature-flags';
import { Configuration } from 'elite-types';
import { getConfiguration } from 'elite-configuration';
+import { NavigationBar } from './general/NavigationBar';
const configuration: Configuration = getConfiguration();
@@ -15,9 +16,12 @@ export const AppComponent = () => (
{APP_ROUTES.map((routeProps, index) => (
-
+ <>
+
+
+ >
))}
-
+ } />
diff --git a/packages/frontend/src/components/general/NavigationBar.tsx b/packages/frontend/src/components/general/NavigationBar.tsx
new file mode 100644
index 0000000..5cad539
--- /dev/null
+++ b/packages/frontend/src/components/general/NavigationBar.tsx
@@ -0,0 +1,51 @@
+import * as React from 'react';
+import {
+ AppBar,
+ Toolbar,
+ makeStyles,
+ fade,
+ IconButton,
+ Theme,
+ createStyles,
+ Typography,
+ Button,
+} from '@material-ui/core';
+import MenuIcon from '@material-ui/icons/Menu';
+
+const useStyles = makeStyles((theme: Theme) =>
+ createStyles({
+ root: {
+ flexGrow: 1,
+ },
+ menuButton: {
+ marginRight: theme.spacing(2),
+ },
+ title: {
+ flexGrow: 1,
+ },
+ }),
+);
+
+export interface NavigationBarProps {
+ readonly title: string;
+}
+
+export const NavigationBar = (props: NavigationBarProps) => {
+ const classes = useStyles();
+
+ return (
+
+
+
+
+
+
+
+ {props.title}
+
+
+
+
+
+ );
+};
diff --git a/packages/frontend/src/index.html b/packages/frontend/src/index.html
index f31f939..1519e98 100644
--- a/packages/frontend/src/index.html
+++ b/packages/frontend/src/index.html
@@ -1,21 +1,19 @@
+
+
-
-
+
+
-
-
+
-
+ Elite-SE | Sexy
+
- Elite-SE | Sexy
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+