Skip to content

Commit d5daa60

Browse files
committed
* Fixed import order
* Fixed rel * Minor design change
1 parent 57e4ecf commit d5daa60

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/pages/donate/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Donate = () => {
3535
<Container maxWidth="md" style={{ marginTop: 10 }}>
3636
<Grid container spacing={2}>
3737
<Grid item xs={12} md={12} lg={12}>
38-
<Typography variant="h5" color="textPrimary" style={{ marginTop: 10 }}>
38+
<Typography variant="h5" color="textPrimary">
3939
<InfoIcon color="inherit" />
4040
{' '}
4141
General
@@ -148,7 +148,7 @@ const Donate = () => {
148148
</TableRow>
149149
<TableRow>
150150
<TableCell>16/05/2017</TableCell>
151-
<TableCell><a href="https://leomoon.com/" target="_blank">LeoMoon Studios</a></TableCell>
151+
<TableCell><a href="https://leomoon.com/" target="_blank" rel="noreferrer">LeoMoon Studios</a></TableCell>
152152
<TableCell>€10.00</TableCell>
153153
</TableRow>
154154
<TableRow>

src/pages/index.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ import Card from '@material-ui/core/Card';
1212
import CardContent from '@material-ui/core/CardContent';
1313
import AnnouncementIcon from '@material-ui/icons/Announcement';
1414
import BuildIcon from '@material-ui/icons/Build';
15+
import CardActionArea from '@material-ui/core/CardActionArea';
1516
import Layout from '../components/Layout';
1617
import PageHeader from '../components/PageHeader';
1718
import { MainContext } from '../contexts/MainContextProvider';
1819
import { setPageIndex } from '../reducers/MainReducer/Actions';
1920
import BlogList from '../components/BlogList';
20-
import CardActionArea from '@material-ui/core/CardActionArea';
2121

2222
const Home = () => {
2323
const data = useStaticQuery(graphql`
@@ -72,7 +72,7 @@ const Home = () => {
7272
<Typography variant="h5" color="textPrimary">
7373
<BuildIcon color="inherit" />
7474
{' '}
75-
Our tools
75+
Highlighted tools
7676
</Typography>
7777
</Grid>
7878
<Grid item xs={12} md={12} lg={12}>
@@ -185,7 +185,7 @@ const Home = () => {
185185
variant="outlined"
186186
onClick={() => navigate('/software')}
187187
>
188-
See all
188+
More
189189
</Button>
190190
</Grid>
191191
</Grid>

0 commit comments

Comments
 (0)