feat: Add dummy pages

This commit is contained in:
Ali BARIN
2021-10-07 01:10:19 +02:00
parent 3aa90bf29f
commit 36ed8d7838
12 changed files with 124 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
import Box from '@mui/material/Box';
import Container from 'components/Container';
import PageTitle from 'components/PageTitle';
import AppRow from 'components/AppRow';
export default function Applications() {
return (
<Box sx={{ py: 3 }}>
<Container>
<PageTitle>Applications</PageTitle>
<AppRow name="Google Calendar" />
<AppRow name="Slack" />
<AppRow name="Twitch" />
<AppRow name="Twitter" />
</Container>
</Box>
);
};