-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a33c24b
commit b1b927f
Showing
5 changed files
with
128 additions
and
15 deletions.
There are no files selected for viewing
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,5 +1,5 @@ | ||
import Root from "./Root"; | ||
import Minimap from "./Minimap"; | ||
|
||
const Error = Root; | ||
const Error = Minimap; | ||
|
||
export default Error; |
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
26 changes: 26 additions & 0 deletions
26
orbitmines.com/src/routes/profiles/fadi-shawki/FadiShawkiCV.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from 'react'; | ||
import {ARTICLES_2021, ARTICLES_2022, ARTICLES_2023, ARTICLES_2024, FAMILIAR_TOOLS} from "./fadi_shawki"; | ||
import ORGANIZATIONS, {Viewed} from "../../../lib/organizations/ORGANIZATIONS"; | ||
import {PROFILES} from "../profiles"; | ||
import {ON_INTELLIGIBILITY} from "../../papers/2022.OnIntelligibility"; | ||
import {CanvasContainer, ON_ORBITS} from "../../papers/2023.OnOrbits"; | ||
import {_2024_02_ORBITMINES_AS_A_GAME_PROJECT} from "../../archive/2024.02.OrbitMines_as_a_Game_Project"; | ||
import {Arc, Section, Reference, Category, Profile, Author} from "../../../lib/paper/Paper"; | ||
|
||
const FadiShawkiCV = () => { | ||
const profile = PROFILES.fadi_shawki; | ||
|
||
return <Profile profile={profile} head={<></>}> | ||
<Author {...profile} /> | ||
|
||
<Section head="Projects / Projecten"> | ||
<Category content={profile.content!.history}/> | ||
<Category content={profile.content!.formal_education}/> | ||
</Section> | ||
<Arc head="Technology Exposure"> | ||
<Category content={FAMILIAR_TOOLS} inline simple /> | ||
</Arc> | ||
</Profile>; | ||
} | ||
|
||
export default FadiShawkiCV; |
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