This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
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.
Merge pull request #5 from trechriron/trentin-basic-layout-v1
Trentin basic layout v1
- Loading branch information
Showing
23 changed files
with
215 additions
and
894 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
paths = [ | ||
{ account = "bwe-demos.near", path = "./src" }, | ||
{ account = "bwe.near", path = "./ignore" }, | ||
{ account = "monkeypatcher.near", path = "./src" }, | ||
] |
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,27 @@ | ||
const devStyles = { | ||
header: { | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "100%", | ||
width: "100%", | ||
fontSize: "2rem", | ||
}, | ||
body: { | ||
display: "flex", | ||
flexDirection: "column", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "300px", | ||
width: "100%", | ||
}, | ||
}; | ||
|
||
return ( | ||
<div> | ||
<Widget src="monkeypatcher.near/App.Header" trust={{ mode: "trusted-author" }} /> | ||
<h1 style={devStyles.header}>DEV FORM</h1> | ||
<div style={devStyles.body}></div> | ||
<div><Widget src="monkeypatcher.near/App.Footer" trust={{ mode: "trusted-author" }} /></div> | ||
</div> | ||
); |
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,28 @@ | ||
const devResultStyles = { | ||
header: { | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "100%", | ||
width: "100%", | ||
fontSize: "2rem", | ||
}, | ||
body: { | ||
display: "flex", | ||
flexDirection: "column", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "300px", | ||
width: "100%", | ||
}, | ||
}; | ||
|
||
return ( | ||
<div> | ||
<Widget src="monkeypatcher.near/App.Header" trust={{ mode: "trusted-author" }} /> | ||
<h1 style={devResultStyles.header}>DEV RESULT</h1> | ||
<p>Result line graph from data for dev usage.</p> | ||
<div><Widget src="monkeypatcher.near/App.Footer" trust={{ mode: "trusted-author" }} /></div> | ||
</div> | ||
|
||
) |
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,32 @@ | ||
const footerStyles = { | ||
row: { | ||
display: "flex", | ||
flexDirection: "row", | ||
justifyContent: "space-around", | ||
alignItems: "center", | ||
padding: "10px", | ||
backgroundColor: 'black', | ||
color: 'white', | ||
}, | ||
column: { | ||
display: "flex", | ||
flexDirection: "column", | ||
justifyContent: "space-around", | ||
}, | ||
} | ||
|
||
return ( | ||
<div> | ||
<div style={footerStyles.row}> | ||
<div style={footerStyles.column}> | ||
<a href="/monkeypatcher.near/scc">HOME</a> | ||
</div> | ||
<div style={footerStyles.column}> | ||
<a href="/monkeypatcher.near/App.ProviderForm">PROVIDER FORM</a> | ||
</div> | ||
<div style={footerStyles.column}> | ||
<a href="/monkeypatcher.near/App.DevForm" >DEVELOPER FORM</a> | ||
</div> | ||
</div> | ||
</div> | ||
); |
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,32 @@ | ||
const headerStyles = { | ||
header: { | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "100%", | ||
width: "100%", | ||
fontSize: "2rem", | ||
}, | ||
row: { | ||
display: "flex", | ||
flexDirection: "row", | ||
justifyContent: "space-around", | ||
alignItems: "center", | ||
padding: "10px", | ||
backgroundColor: 'black', | ||
color: 'white', | ||
}, | ||
column: { | ||
display: "flex", | ||
flexDirection: "column", | ||
justifyContent: "space-around", | ||
}, | ||
} | ||
|
||
return ( | ||
<div> | ||
<div style={headerStyles.row}> | ||
<h1 style={headerStyles.header}>BOS Services Calculator</h1> | ||
</div> | ||
</div> | ||
); |
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,28 @@ | ||
const providerStyles = { | ||
header: { | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "100%", | ||
width: "100%", | ||
fontSize: "2rem", | ||
}, | ||
body: { | ||
display: "flex", | ||
flexDirection: "column", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "300px", | ||
width: "100%", | ||
}, | ||
}; | ||
|
||
return ( | ||
<div> | ||
<Widget src="monkeypatcher.near/App.Header" trust={{ mode: "trusted-author" }} /> | ||
<h1 style={providerStyles.header}>PROVIDER FORM</h1> | ||
<div style={providerStyles.body}></div> | ||
<div><Widget src="monkeypatcher.near/App.Footer" trust={{ mode: "trusted-author" }} /></div> | ||
</div> | ||
); | ||
ß |
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,28 @@ | ||
const providerResultStyles = { | ||
header: { | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "100%", | ||
width: "100%", | ||
fontSize: "2rem", | ||
}, | ||
body: { | ||
display: "flex", | ||
flexDirection: "column", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
height: "300px", | ||
width: "100%", | ||
}, | ||
}; | ||
|
||
|
||
return ( | ||
<div> | ||
<Widget src="monkeypatcher.near/App.Header" trust={{ mode: "trusted-author" }} /> | ||
<h1 style={providerResultStyles.header}>PROVIDER RESULT</h1> | ||
<p>Result line graph and info for provider form data.</p> | ||
<div><Widget src="monkeypatcher.near/App.Footer" trust={{ mode: "trusted-author" }} /></div> | ||
</div> | ||
); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.