Skip to content

Commit a85fe3a

Browse files
committed
* Added search functionality to software page
* Design changes for 404 page
1 parent 125d3f4 commit a85fe3a

File tree

5 files changed

+272
-208
lines changed

5 files changed

+272
-208
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import React from 'react';
2+
import CardActionArea from '@material-ui/core/CardActionArea';
3+
import { navigate } from 'gatsby';
4+
import CardContent from '@material-ui/core/CardContent';
5+
import Typography from '@material-ui/core/Typography';
6+
import Card from '@material-ui/core/Card';
7+
8+
const Application = ({ name, description, url }) => (
9+
<Card style={{ height: '100%' }}>
10+
<CardActionArea
11+
style={{ height: '100%' }}
12+
onClick={() => navigate(url)}
13+
>
14+
<CardContent>
15+
<Typography variant="h6" color="textPrimary" paragraph>
16+
{name}
17+
</Typography>
18+
<Typography color="textSecondary" paragraph>
19+
{description}
20+
</Typography>
21+
</CardContent>
22+
</CardActionArea>
23+
</Card>
24+
);
25+
26+
export default Application;

src/pages/404/index.jsx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,14 @@ const NotFoundPage = () => {
2323
<PageHeader title="Not found" subTitle="The requested page could not be found" />
2424
<Container maxWidth="md" style={{ marginTop: 20 }}>
2525
<Card>
26-
<CardActionArea>
27-
<CardContent>
28-
<Typography gutterBottom>
29-
There&apos;s really nothing here except for some top secret stuff (maybe).
30-
</Typography>
31-
<Typography>
32-
Would you like to go back to the home page?
33-
</Typography>
34-
</CardContent>
35-
</CardActionArea>
26+
<CardContent>
27+
<Typography gutterBottom>
28+
There&apos;s really nothing here except for some top secret stuff (maybe).
29+
</Typography>
30+
<Typography>
31+
Would you like to go back to the home page?
32+
</Typography>
33+
</CardContent>
3634
<CardActions>
3735
<Button color="primary" variant="outlined" href="/">
3836
Home

src/pages/donate/index.jsx

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,30 @@ const Donate = () => {
4242
<Typography>
4343
Donations are always welcome. All of the money that is donated to us will go towards
4444
the development of new and old projects, the maintenance of our servers, domain name
45-
fees and the occasional cup of coffee! Simply click the PayPal or BTC button to start
46-
the donation process! PayPal allows you to donate using practically any payment method
47-
you like. Brave tips are also welcome!
48-
<br />
49-
<br />
50-
Don’t worry if you don’t immediately appear in the hall of fame. We’ll update the hall
51-
of fame within 3 days after your donation (and if we haven’t, because we should have,
52-
send us a mail to let us know!!). In case of a BTC donation, please email us if you’d
45+
fees and the occasional cup of coffee! Simply click the PayPal or BTC button to
46+
start the donation process! PayPal allows you to donate using practically
47+
any payment method you like. Brave tips are also welcome!
48+
</Typography>
49+
50+
<Typography style={{ marginTop: 20 }}>
51+
Don’t worry if you don’t immediately appear in the hall of fame. We’ll update the
52+
hall of fame within 3 days after your donation (and if we haven’t, because we should
53+
have, send us a mail to let us know!!).
54+
</Typography>
55+
56+
<Typography style={{ marginTop: 20 }}>
57+
In case of a BTC donation, please email us if you’d
5358
like to appear in the hall of fame, otherwise it will show up as an anonymous
5459
donation.
55-
<br />
56-
<br />
60+
</Typography>
61+
62+
<Typography style={{ marginTop: 20 }}>
5763
Even if you don’t want to donate, simply spreading the word means a lot to us. Thank
5864
you for your interest in our software and for making the world a better place,
5965
together!
60-
<br />
61-
<br />
66+
</Typography>
67+
68+
<Typography style={{ marginTop: 20 }}>
6269
If you don’t want your name to appear in the hall of fame or would like to have it
6370
removed, feel free to let us know in the message of the donation or by sending us an
6471
e-mail.

src/pages/software/advanced-portchecker/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const AdvancedPortCheckerPage = () => {
5050

5151
return (
5252
<Layout>
53-
<PageHeader title="Advanced PortChecker" subTitle="Check TCP/UDP ports" />
53+
<PageHeader title="Advanced PortChecker" subTitle="Scan for open TCP/UDP ports" />
5454
<Container maxWidth="md" style={{ marginTop: 10 }}>
5555
<Grid container spacing={2} style={{ marginTop: 10 }}>
5656
<Grid item xs={12} md={12} lg={12}>

0 commit comments

Comments
 (0)