Skip to content

Commit 17c49e7

Browse files
authored
Merge pull request #70 from techstartucalgary/Bernard/LandingPage
Bernard/landing page
2 parents 67dadf6 + a6201a0 commit 17c49e7

File tree

12 files changed

+83
-25
lines changed

12 files changed

+83
-25
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ backend/__pycache__
2929
backend/*/__pycache__
3030

3131
#env
32-
.env
32+
.env
33+
34+
venv/

frontend/src/components/TopBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { AppBar, Button, Toolbar, Typography, Grid } from "@mui/material";
3-
import logo from "./CyberHireLogo.png";
3+
import logo from "../img/CyberHireLogo.png";
44
import "../styles/TopBar.css";
55

66
function TopBar() {
File renamed without changes.

frontend/src/img/HiringVector.png

92 KB
Loading

frontend/src/img/LPVector1.png

4.17 KB
Loading

frontend/src/img/LPVector2.png

2.7 KB
Loading

frontend/src/img/LPVector3.png

2.19 KB
Loading

frontend/src/img/findJob.png

20.1 KB
Loading

frontend/src/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import ReactDOM from "react-dom/client";
33
import { Route, Routes, HashRouter } from "react-router-dom";
44
import "./styles/index.css";
5-
import App from "./pages/App";
5+
import LandingPage from "./pages/LandingPage";
66
import About from "./pages/About";
77
import Privacy from "./pages/Privacy";
88
import TopBar from "./components/TopBar";
@@ -18,7 +18,7 @@ root.render(
1818
<HashRouter>
1919
<TopBar />
2020
<Routes>
21-
<Route path="" element={<App />} />
21+
<Route path="" element={<LandingPage />} />
2222
<Route path="/about" element={<About />} />
2323
<Route path="/privacy" element={<Privacy />} />
2424
<Route path="/app" element={<ApplicantHome />} />

frontend/src/pages/App.jsx

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)