Skip to content

Commit

Permalink
fix: added navbar to status and sim page
Browse files Browse the repository at this point in the history
  • Loading branch information
bharateshwq committed Oct 20, 2024
1 parent 9ad04a2 commit ed70bca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/Simulations.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import CodeBlock from "../layout/CodeBlock";
import PageHeader from "../layout/PageHeader";
import style from "../style";
import { Link } from "react-router-dom";
import Header from "../layout/Header";

export default function SimulationsPage() {
// call /simulations endpoint, which returns
Expand Down Expand Up @@ -109,7 +110,7 @@ export default function SimulationsPage() {

return (
<>
{/* <Header /> */}
<Header />
<PageHeader title="Simulations" backgroundColor={style.colors.BLUE_98}>
<p style={{ margin: 0 }}>
This page shows the simulations that are currently running or have run
Expand Down
2 changes: 2 additions & 0 deletions src/pages/StatusPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
COUNTRY_NAMES,
} from "../data/countries";
import { Helmet } from "react-helmet";
import Header from "../layout/Header";

function ApiStatus({ apiStatus, apiCategory, countryNames }) {
return (
Expand Down Expand Up @@ -122,6 +123,7 @@ export function StatusPage() {

return (
<>
<Header />
<div
style={{
paddingLeft: 50,
Expand Down

0 comments on commit ed70bca

Please sign in to comment.