added versioning to all views

This commit is contained in:
plebbitor
2023-04-23 11:57:13 +02:00
parent 8e9708a442
commit 9010510aa9
6 changed files with 35 additions and 7 deletions
+8 -1
View File
@@ -21,7 +21,6 @@ import handleStyleChange from '../../utils/handleStyleChange';
import renderComments from '../../utils/renderComments'; import renderComments from '../../utils/renderComments';
import useClickForm from '../../hooks/useClickForm'; import useClickForm from '../../hooks/useClickForm';
import useError from '../../hooks/useError'; import useError from '../../hooks/useError';
import useSuccess from '../../hooks/useSuccess';
const Board = () => { const Board = () => {
@@ -921,6 +920,14 @@ const Board = () => {
)} )}
</div> </div>
</BoardForm> </BoardForm>
<div style={{
textAlign: "center",
fontSize: "11px",
marginTop: "2em",
marginBottom: "2em",
}}>
plebchan v0.1.0. GPL-2.0
</div>
</Container> </Container>
</> </>
); );
+8
View File
@@ -410,6 +410,14 @@ const Catalog = () => {
)} )}
</Threads> </Threads>
</Container> </Container>
<div style={{
textAlign: "center",
fontSize: "11px",
marginTop: "2em",
marginBottom: "2em",
}}>
plebchan v0.1.0. GPL-2.0
</div>
</> </>
); );
} }
+1 -1
View File
@@ -134,7 +134,7 @@ const Home = () => {
fontSize: "11px", fontSize: "11px",
marginBottom: "2em", marginBottom: "2em",
}}> }}>
Plebchan v.0.1.0 is free and open-source software distributed under GPL-2.0 license. plebchan v0.1.0. GPL-2.0
</div> </div>
</Container> </Container>
</> </>
+2 -5
View File
@@ -44,14 +44,11 @@ const NotFound = ({ setBodyStyle }) => {
</Boards> </Boards>
</Page> </Page>
<div style={{ <div style={{
marginTop: "25px",
textAlign: "center", textAlign: "center",
fontSize: "11px", fontSize: "11px",
marginBottom: "1em", marginTop: "2em",
}}> }}>
v.0.1.0 plebchan v0.1.0. GPL-2.0
<br />
Plebchan is free and open-source software distributed under GPL-2.0 license.
</div> </div>
</Container> </Container>
</> </>
+8
View File
@@ -375,6 +375,14 @@ const Pending = () => {
<PostLoader /> <PostLoader />
)} )}
</BoardForm> </BoardForm>
<div style={{
textAlign: "center",
fontSize: "11px",
marginTop: "2em",
marginBottom: "2em",
}}>
plebchan v0.1.0. GPL-2.0
</div>
</Container> </Container>
</> </>
); );
+8
View File
@@ -935,6 +935,14 @@ const Thread = () => {
<PostLoader /> <PostLoader />
)} )}
</BoardForm> </BoardForm>
<div style={{
textAlign: "center",
fontSize: "11px",
marginTop: "2em",
marginBottom: "2em",
}}>
plebchan v0.1.0. GPL-2.0
</div>
</Container> </Container>
</> </>
); );