-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* a * removed unused imports and comments unused variables * Fix everything * removed unused imports and comments unused variables * Initial deploy of graph app (#2) * removed unnused imports * fixed spell errors on README * searchbar with logo and footer v1.0 * aligned logo with search buttons and minor styling fixes * changed analyze text, added icons to the buttons and text to footer * fixed footer margins * removed unused imports and comments unused variables * removed unused imports and comments unused variables * add github action to deploy on pull request * fixed github actions to deploy app to firebase * ignore -.firebase directory --------- Co-authored-by: Pedro Ribeiro <[email protected]>
- Loading branch information
1 parent
aee2967
commit c0fbb4d
Showing
16 changed files
with
69 additions
and
74 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ build | |
.yarn/install-state.gz | ||
|
||
# Firebase | ||
.firebase/* | ||
firebase.json | ||
.firebaserc | ||
|
||
|
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
2 changes: 1 addition & 1 deletion
2
src/components/Graph/AnalysisWindow/Content/tabs/DirectExposure.tsx
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 |
---|---|---|
@@ -1,27 +1,24 @@ | ||
import { SparklesIcon } from "@heroicons/react/20/solid"; | ||
import { FC } from "react"; | ||
|
||
import Searchbar from "./SearchBar"; | ||
import logo from "../../../assets/ward-logo-blue-full.svg"; | ||
import Searchbar from "./SearchBar"; | ||
|
||
interface LandingPageProps { | ||
setSearchedAddress: (address: string) => void; | ||
} | ||
|
||
const LandingPage: FC<LandingPageProps> = ({ setSearchedAddress }) => { | ||
return ( | ||
<div className="flex h-screen flex-col justify-between overflow-hidden bg-main bg-cover bg-center bg-no-repeat"> | ||
<div className="flex max-w-screen-sm flex-col items-center gap-y-10"> | ||
<img src={logo} alt="Ward Logo" className="w-2/3" /> | ||
<Searchbar className="w-full" onSearchAddress={setSearchedAddress} /> | ||
<h3 className="flex flex-row items-center gap-x-2 text-sm text-blue-500"> | ||
<SparklesIcon className="h-5 w-5 text-blue-500" aria-hidden="true" /> | ||
I'm feeling lucky | ||
</h3> | ||
</div> | ||
<div className="flex max-w-screen-sm flex-col items-center gap-y-10"> | ||
<img src={logo} alt="Ward Logo" className="w-2/3" /> | ||
<Searchbar className="w-full" onSearchAddress={setSearchedAddress} /> | ||
<h3 className="flex flex-row items-center gap-x-2 text-sm text-blue-500"> | ||
<SparklesIcon className="h-5 w-5 text-blue-500" aria-hidden="true" /> | ||
I'm feeling lucky | ||
</h3> | ||
</div> | ||
); | ||
}; | ||
|
||
|
||
export default LandingPage; | ||
export default LandingPage; |
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
2 changes: 1 addition & 1 deletion
2
src/components/Graph/custom_elements/edges/TransfershipEdge/create.tsx
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
2 changes: 1 addition & 1 deletion
2
src/components/Graph/custom_elements/nodes/AddressNode/AddressNode/Header/Header.tsx
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