-
Notifications
You must be signed in to change notification settings - Fork 1
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
b6c4b51
commit d7f74a0
Showing
9 changed files
with
153 additions
and
94 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,7 +1,23 @@ | ||
import React from "react"; | ||
|
||
function Contact() { | ||
return <div></div>; | ||
return ( | ||
<div className="wrapper"> | ||
<div className="text-container" style={{ justifyContent: "center" }}> | ||
<h3> | ||
The project is an initiative by art & design | ||
<br /> collective Nonhuman Nonsense developed in | ||
<br /> collaboration with Studio Other Spaces, | ||
<br /> In4Art, Elliot, Albin and others. | ||
</h3> | ||
<h3> | ||
@nonhuman-nonsense | ||
<br /> nonhuman-nonsense.com | ||
<br /> hello@nonhuman-nonsense.com | ||
</h3> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Contact; |
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,29 @@ | ||
import React from "react"; | ||
|
||
function NavItem({ name, onDisplayOverlay, isActive }) { | ||
const navItemStyle = { | ||
marginLeft: "25px", | ||
cursor: "pointer", | ||
}; | ||
|
||
return ( | ||
<h3 style={{ margin: "0", padding: "0" }}> | ||
<a | ||
className="link" | ||
href="#" | ||
onClick={(e) => { | ||
e.preventDefault(); // Prevent default anchor action | ||
onDisplayOverlay(name); // Trigger overlay display | ||
}} | ||
style={{ | ||
...navItemStyle, | ||
textDecoration: isActive ? "underline" : "none", // Underline if active | ||
}} | ||
> | ||
{name.toUpperCase()} | ||
</a> | ||
</h3> | ||
); | ||
} | ||
|
||
export default NavItem; |
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 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