-
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
Showing
7 changed files
with
140 additions
and
84 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import { makeStyles } from '@mui/styles'; | ||
import AuthenticatedRoot from './app/pathing/authed-root'; | ||
import appTheme from './app-theme'; | ||
|
||
const useStyles = makeStyles(appTheme); | ||
|
||
const AppAuthed = () => { | ||
const classes = useStyles(); | ||
|
||
return (<React.Fragment> | ||
<main className={classes.content}> | ||
<AuthenticatedRoot /> | ||
</main> | ||
</React.Fragment>); | ||
}; | ||
|
||
export default AppAuthed; |
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 drawerWidth = 320; | ||
|
||
const AppTheme = (theme) => ({ | ||
rootContainer: { | ||
display: 'flex', | ||
flexGrow: 1, | ||
flexWrap: 'wrap' | ||
}, | ||
appBar: { | ||
zIndex: theme.zIndex.drawer + 1, | ||
}, | ||
menuButton: { | ||
marginRight: theme.spacing(2), | ||
}, | ||
drawer: { | ||
width: drawerWidth, | ||
flexShrink: 0, | ||
}, | ||
drawerPaper: { | ||
width: drawerWidth, | ||
}, | ||
content: { | ||
flexGrow: 1, | ||
padding: theme.spacing(3), | ||
}, | ||
}); | ||
|
||
export default AppTheme; |
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,44 @@ | ||
import React from 'react'; | ||
|
||
import SignInBox from './app/sign-in'; | ||
import { Typography } from '@mui/material'; | ||
|
||
const AppUnauthed = () => { | ||
return (<React.Fragment> | ||
<div style={ { minWidth: '100%', height: 550, backgroundImage: 'linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.2)), url("banner.jpg")', backgroundPosition: 'bottom', backgroundSize: 'cover' }}> | ||
<div style={ { display: 'flex', flexWrap: 'wrap' } }> | ||
<div style={ { flexGrow: 0, width: 500, maxWidth: '100%', justifyContent:"right", display: 'flex' } }> | ||
<img src="/front.png" /> | ||
</div> | ||
<div style={ { flexGrow: 0, width: 550, maxWidth: '100%', color: 'white', display: 'flex', flexDirection: 'column', textAlign: 'right' } }> | ||
<Typography variant="h3" style={ { color: '#464646', width: 550, fontWeight: 600, lineHeight: '48px', marginTop: 72 } }> | ||
Reliable Handyman Services in Cincinnati | ||
</Typography> | ||
<Typography variant="h4" style={ { color: '#464646', fontWeight: 400, fontSize: 28, marginTop: 8 } }> | ||
Big or small, we fix it all! | ||
</Typography> | ||
<Typography variant="h4" style={ { color: '#000', fontWeight: 800, fontSize: 36, marginTop: 36, letterSpacing: '-2px' } }> | ||
(513) 520-2047 | ||
</Typography> | ||
</div> | ||
<div style={ { flexGrow: 1 } } /> | ||
<div style={ { flexGrow: 0, width: 300, maxWidth: '100%', justifyContent:"right", display: 'flex' } } /> | ||
</div> | ||
</div> | ||
{/* <div> | ||
<iframe | ||
src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fprofile.php%3Fid%3D61558045020745&tabs=timeline&width=900&height=500&small_header=true&adapt_container_width=true&hide_cover=false&show_facepile=false&appId=365658417256090" | ||
width="500" | ||
height="700" | ||
style={ { border:'none', overflow: 'hidden' } } | ||
scrolling="no" | ||
frameBorder="0" allowFullScreen={ true } allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe> | ||
</div> */} | ||
<div> | ||
<SignInBox /> | ||
|
||
</div> | ||
</React.Fragment>) | ||
} | ||
|
||
export default AppUnauthed; |
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