-
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
4 changed files
with
46 additions
and
11 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,11 +1,42 @@ | ||
import Box from '@mui/material/Box'; | ||
import Typography from '@mui/material/Typography'; | ||
import ArchitectureDiagram from '../ArchitectureDiagram'; | ||
import { Link} from "react-router-dom"; | ||
import useMediaQuery from '@mui/material/useMediaQuery'; | ||
import { FigureCaption,SmallPrint, P, Ul,Subheading } from './documentation/StandardFormats'; | ||
import { Lv2cCopyrightText, Lv2cVersion, Lv2cVersionNotice } from '../VersionInfo'; | ||
import { Lv2Cairo } from './documentation/StandardFormats'; | ||
|
||
|
||
|
||
const About = ()=> { | ||
const floatLogo = useMediaQuery('(min-width:600px)'); | ||
|
||
return ( | ||
<div> | ||
<p>About page.</p> | ||
</div> | ||
); | ||
<Box className={"page_frame"}> | ||
<div className={"page_column"}> | ||
<img src="img/LvcLogo.svg" | ||
style={{position: "absolute", left: -90,top: -2, height: 76, | ||
display: floatLogo? undefined: "none"}} /> | ||
|
||
<Typography variant="h2" sx={{ marginBottom: 4 }}> | ||
<span style={{fontWeight: 900, color: "#505050"}}>Sponsorship</span> | ||
</Typography> | ||
<P> | ||
<Lv2Cairo/> accepts sponsorship donations through Github Sponsors. Click <a href='https://github.com/sponsors/rerdavies'>here</a> to make a donation. | ||
</P> | ||
<div style={{height: 24}} /> | ||
<div style={{height: 1, background:"#606060",marginTop: 16, marginBottom: 16}} /> | ||
<Typography paragraph style={{fontSize: "0.8em"}}> | ||
Lv2Cairo is provided under the terms of | ||
an <Link to="/license">MIT license</Link>. | ||
<br/>{Lv2cCopyrightText()} | ||
</Typography> | ||
|
||
|
||
|
||
</div> | ||
</Box> | ||
); | ||
} | ||
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