index.js 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. import { Container, Grid, Table, TableBody, TableCell, TableRow, Typography } from '@mui/material';
  2. import { Box } from '@mui/system';
  3. const Footer = () => (
  4. <Box className="Footer">
  5. <Container>
  6. <Grid container>
  7. <Grid item xs={2}></Grid>
  8. <Grid item xs={2}>
  9. <Typography variant="body1" textAlign="left">
  10. Графік роботи
  11. </Typography>
  12. <Table>
  13. <TableBody>
  14. <TableRow>
  15. <TableCell className="TableCell">
  16. <Typography variant="body2" textAlign="left">
  17. Пн-Пт:
  18. </Typography>
  19. </TableCell>
  20. <TableCell className="TableCell">
  21. <Typography variant="body2" textAlign="left">
  22. 9.00-18.00
  23. </Typography>
  24. </TableCell>
  25. </TableRow>
  26. <TableRow>
  27. <TableCell className="TableCell">
  28. <Typography variant="body2" textAlign="left">
  29. Субота:
  30. </Typography>
  31. </TableCell>
  32. <TableCell className="TableCell">
  33. <Typography variant="body2" textAlign="left">
  34. 9.00-15.00
  35. </Typography>
  36. </TableCell>
  37. </TableRow>
  38. <TableRow>
  39. <TableCell className="TableCell">
  40. <Typography variant="body2" textAlign="left">
  41. Неділя
  42. </Typography>
  43. </TableCell>
  44. <TableCell className="TableCell">
  45. <Typography variant="body2" textAlign="left">
  46. вихідний
  47. </Typography>
  48. </TableCell>
  49. </TableRow>
  50. </TableBody>
  51. </Table>
  52. </Grid>
  53. <Grid item xs={3}></Grid>
  54. <Grid item xs={3}>
  55. <Typography variant="body1" textAlign="left">
  56. Контакти
  57. </Typography>
  58. <Table>
  59. <TableBody>
  60. <TableRow>
  61. <TableCell className="TableCell">
  62. <Typography variant="body2" textAlign="left">
  63. Тел:
  64. </Typography>
  65. </TableCell>
  66. <TableCell className="TableCell">
  67. <Typography variant="body2" textAlign="left">
  68. +380667213260
  69. </Typography>
  70. </TableCell>
  71. </TableRow>
  72. <TableRow>
  73. <TableCell className="TableCell">
  74. <Typography variant="body2" textAlign="left">
  75. Email:
  76. </Typography>
  77. </TableCell>
  78. <TableCell className="TableCell">
  79. <Typography variant="body2" textAlign="left">
  80. illya.shyyan@hneu.net
  81. </Typography>
  82. </TableCell>
  83. </TableRow>
  84. </TableBody>
  85. </Table>
  86. </Grid>
  87. <Grid item xs={2}></Grid>
  88. </Grid>
  89. </Container>
  90. </Box>
  91. );
  92. export { Footer };