url-minify/frontend/components/Features/index.js

90 lines
2.1 KiB
JavaScript
Raw Normal View History

import * as React from 'react'
2022-02-13 08:28:33 +00:00
import {
Avatar,
Box,
Button,
Container,
IconButton,
Menu,
MenuItem,
Toolbar,
Tooltip,
Typography,
alpha,
AppBar,
} from '@mui/material'
2022-02-04 15:36:59 +00:00
import QrCodeScannerIcon from '@mui/icons-material/QrCodeScanner'
import RocketLaunchIcon from '@mui/icons-material/RocketLaunch'
import RemoveRedEyeIcon from '@mui/icons-material/RemoveRedEye'
import NotFound from '@pages/404'
2022-02-04 15:36:59 +00:00
export default function Index() {
return (
2022-02-13 08:28:33 +00:00
<Box
sx={{
flexGrow: 1,
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
2022-02-13 08:28:33 +00:00
my: 2,
}}
>
2022-02-04 15:36:59 +00:00
<Box>
<h1> SHORTEN, SHARE AND ANALYZE</h1>
<br />
</Box>
2022-02-13 08:28:33 +00:00
<Box
sx={{
flexGrow: 1,
display: 'flex',
justifyContent: 'space-around',
alignContent: 'space-around',
alignItems: 'space-around',
width: '50vw',
2022-02-13 08:28:33 +00:00
}}
>
<Box
style={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'centre',
alignItems: 'center',
2022-02-13 08:28:33 +00:00
}}
>
<a className="Link" href="NotFound">
<RemoveRedEyeIcon sx={{ width: '3.5rem', height: '3.5rem' }} />
<h4>VIEW COUNTER</h4>
</a>
2022-02-04 15:36:59 +00:00
</Box>
2022-02-13 08:28:33 +00:00
<Box
style={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'centre',
alignItems: 'center',
2022-02-13 08:28:33 +00:00
}}
>
<a className="Link" href="NotFound">
<QrCodeScannerIcon sx={{ width: '3.5rem', height: '3.5rem' }} />
<h4>QR CODE</h4>
</a>
2022-02-04 15:36:59 +00:00
</Box>
2022-02-13 08:28:33 +00:00
<Box
style={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'centre',
alignItems: 'center',
2022-02-13 08:28:33 +00:00
}}
>
<a className="Link" href="NotFound">
<RocketLaunchIcon sx={{ width: '3.5rem', height: '3.5rem' }} />
<h4>ROBUST API</h4>
</a>
2022-02-04 15:36:59 +00:00
</Box>
</Box>
</Box>
)
2022-02-04 15:36:59 +00:00
}