-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hasadna:main' into mktana
- Loading branch information
Showing
16 changed files
with
2,664 additions
and
68 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.main-menu { | ||
display: flex; | ||
flex-direction: column; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { NavLink } from 'react-router-dom' | ||
import busImage from '../../img/busImg.png' | ||
import './HomePage.scss' | ||
|
||
export const HomePage = () => { | ||
return ( | ||
<> | ||
<img src={busImage} alt="Public Transportaion Bus Illustration" /> | ||
<h1>ברוכים הבאים לדאטאבוס</h1> | ||
<h2>הפלטפורמה הפתוחה לנתוני אמת על איכות קווי התחבורה הציבורית בישראל </h2> | ||
<h3> | ||
מטרת האתר היא לשפר את איכות התחבורה הציבורית בארץ ע״י מתן מידע אמין לעיתונאים, אזחרים, חברות | ||
התחבורה, וגורמי ממשל בישראל. | ||
</h3> | ||
<div className="main-menu"> | ||
<NavLink to="/timeline" className="nav-link"> | ||
הסטוריית לוחות זמנים | ||
</NavLink> | ||
<NavLink to="/gaps" className="nav-link"> | ||
{' '} | ||
נסיעות שלא בוצעו{' '} | ||
</NavLink> | ||
<NavLink to="/gaps_pattern" className="nav-link"> | ||
דפוסי נסיעות שלא בוצעו | ||
</NavLink> | ||
<NavLink to="/map" className="nav-link"> | ||
מפה בזמן אמת | ||
</NavLink> | ||
</div> | ||
</> | ||
) | ||
} | ||
|
||
export default HomePage |
Oops, something went wrong.