added versioning and license info

This commit is contained in:
plebbitor
2023-04-22 13:11:42 +02:00
parent 44d6567e17
commit 103ff3fa6a
5 changed files with 32 additions and 1 deletions
+3
View File
@@ -165,6 +165,9 @@ const SettingsModal = ({ isOpen, closeModal }) => {
> >
<div className="panel"> <div className="panel">
<div className="panel-header"> <div className="panel-header">
<span id="version">
v0.1.0
</span>
Settings Settings
<Link to="" onClick={handleCloseModal}> <Link to="" onClick={handleCloseModal}>
<span className="icon" title="close" /> <span className="icon" title="close" />
+1 -1
View File
@@ -232,7 +232,7 @@ export const Footer = styled.div`
text-align: center; text-align: center;
clear: both; clear: both;
padding-top: .5em; padding-top: .5em;
padding-bottom: 5em; padding-bottom: 2em;
ul { ul {
border-top: 1px solid; border-top: 1px solid;
@@ -16,6 +16,13 @@ export const StyledModal = styled(Modal)`
box-shadow: 0 0 5px rgba(0, 0, 0, .25); box-shadow: 0 0 5px rgba(0, 0, 0, .25);
} }
#version {
font-size: 11px;
position: absolute;
display: block;
margin-left: 5px;
}
@media (max-width: 768px) { @media (max-width: 768px) {
.panel { .panel {
width: 320px !important; width: 320px !important;
+11
View File
@@ -129,6 +129,17 @@ const Home = () => {
</li> </li>
</ul> </ul>
</Footer> </Footer>
<div style={{
textAlign: "center",
fontSize: "11px",
marginBottom: "1em",
}}>
Plebchan is free and open-source software distributed under GPL-2.0 license.
<br />
<br />
<br />
v.0.1.0
</div>
</Container> </Container>
</> </>
) )
+10
View File
@@ -43,6 +43,16 @@ const NotFound = ({ setBodyStyle }) => {
}}></img> }}></img>
</Boards> </Boards>
</Page> </Page>
<div style={{
marginTop: "25px",
textAlign: "center",
fontSize: "11px",
marginBottom: "1em",
}}>
v.0.1.0
<br />
Plebchan is free and open-source software distributed under GPL-2.0 license.
</div>
</Container> </Container>
</> </>
); );