-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rebranding para ticketz e relicenciamento sob AGPL
- Loading branch information
Showing
22 changed files
with
959 additions
and
55 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,62 @@ | ||
import React from "react"; | ||
|
||
import { | ||
makeStyles, | ||
Paper | ||
} from "@material-ui/core"; | ||
|
||
import MainContainer from "../../components/MainContainer"; | ||
import MainHeader from "../../components/MainHeader"; | ||
import MainHeaderButtonsWrapper from "../../components/MainHeaderButtonsWrapper"; | ||
import Title from "../../components/Title"; | ||
import { i18n } from "../../translate/i18n"; | ||
|
||
import Typography from '@material-ui/core/Typography'; | ||
import Link from '@material-ui/core/Link'; | ||
|
||
const useStyles = makeStyles(theme => ({ | ||
mainPaper: { | ||
width: '100%', | ||
minHeight: '200px', | ||
overflowY: "scroll", | ||
...theme.scrollbarStyles, | ||
}, | ||
heading: { | ||
fontSize: theme.typography.pxToRem(20), | ||
flexBasis: '33.33%', | ||
flexShrink: 0, | ||
}, | ||
secondaryHeading: { | ||
fontSize: theme.typography.pxToRem(15), | ||
color: theme.palette.text.secondary, | ||
} | ||
})); | ||
|
||
const About = () => { | ||
const classes = useStyles(); | ||
|
||
return ( | ||
<MainContainer> | ||
<MainHeader> | ||
<Title>{i18n.t("about.title")}</Title> | ||
<MainHeaderButtonsWrapper> | ||
</MainHeaderButtonsWrapper> | ||
</MainHeader> | ||
<Paper className={classes.mainPaper} variant="outlined"> | ||
<Typography variant="h4">{i18n.t("about.abouttitle")}</Typography> | ||
<Typography variant="body1">{i18n.t("about.aboutdetail")}</Typography> | ||
<Typography><Link href="https://todobom.com">{i18n.t("about.aboutauthorsite")}</Link></Typography> | ||
<Typography><Link href="https://github.com/canove/whaticket-community">{i18n.t("about.aboutwhaticketsite")}</Link></Typography> | ||
<Typography><Link href="https://github.com/vemfazer">{i18n.t("about.aboutvemfazersite")}</Link></Typography> | ||
</Paper> | ||
<Paper className={classes.mainPaper} variant="outlined"> | ||
<Typography variant="h4">{i18n.t("about.licenseheading")}</Typography> | ||
<Typography variant="body1">{i18n.t("about.licensedetail")}</Typography> | ||
<Typography><Link href="https://github.com/allgood/ticketz/LICENSE.md">{i18n.t("about.licensefulltext")}</Link></Typography> | ||
<Typography><Link href="https://github.com/allgood/ticketz">{i18n.t("about.licensesourcecode")}</Link></Typography> | ||
</Paper> | ||
</MainContainer> | ||
); | ||
}; | ||
|
||
export default About; |
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
Oops, something went wrong.