-
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
Showing
17 changed files
with
215 additions
and
89 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
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,23 +1,21 @@ | ||
import React from 'react'; | ||
import homeStyles from '../styles/homeStyles'; | ||
import {headerStyles} from '../styles/authStyles'; | ||
|
||
export default function AuthHeader() { | ||
const classes = homeStyles() | ||
const classes = headerStyles() | ||
|
||
return ( | ||
// <div className={classes.homeHeaderBackgroundImage}> | ||
<div className={classes.homeHeader}> | ||
<div className={classes.homeHeaderLeft}> | ||
<h1 className={classes.homeHeaderTitle}>Holistic</h1> | ||
<div className={classes.homeHeaderLogo}></div> | ||
</div> | ||
<div className={classes.homeHeaderRight}> | ||
<h3 className={classes.headerItem}>Coach-Client CRM</h3> | ||
<h3 className={classes.headerItem}>Schedule sessions</h3> | ||
<h3 className={classes.headerItem}>Track progress and feedback</h3> | ||
<h3 className={classes.headerItem}>Connect with the community</h3> | ||
</div> | ||
<div className={classes.container}> | ||
<div className={classes.sectionLeft}> | ||
<h1 className={classes.title}>Holistic</h1> | ||
<div className={classes.logo}></div> | ||
</div> | ||
// </div> | ||
<div className={classes.sectionRight}> | ||
<h3 className={classes.textItem}>Coach-Client CRM</h3> | ||
<h3 className={classes.textItem}>Schedule sessions</h3> | ||
<h3 className={classes.textItem}>Track progress and feedback</h3> | ||
<h3 className={classes.textItem}>Connect with the community</h3> | ||
</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
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
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,37 @@ | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import { holisticTheme } from './colorThemes'; | ||
import bannerImage from '../assets/images/homeBanner_placeholder.jpg'; | ||
import logoImage from '../assets/images/logo_placeholder.jpg'; | ||
|
||
export const searchBoxStyles = makeStyles(() => ({ | ||
container: { | ||
backgroundColor: holisticTheme.bgContainer, | ||
borderRadius: '22px', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
margin: '2% auto', | ||
padding: '4%', | ||
}, | ||
label: { | ||
color: holisticTheme.textLabel, | ||
fontSize: 20, | ||
fontStyle: 'italic', | ||
padding: '2%', | ||
textAlign: 'center', | ||
width: '100%', | ||
}, | ||
input: { | ||
backgroundColor: holisticTheme.bgLight, | ||
textAlign: 'left', | ||
padding: '0 2%', | ||
borderRadius: '25px', | ||
}, | ||
adornment: { | ||
}, | ||
icon: { | ||
// margin: '2%', | ||
color: holisticTheme.textLabel, | ||
}, | ||
|
||
})) |
Oops, something went wrong.