You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CompanyInfo.jsx 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. import { Typography } from '@mui/material';
  2. import { Box } from '@mui/system';
  3. import Image from 'next/image';
  4. const CompanyInfo = () => {
  5. return (
  6. <>
  7. <Box
  8. sx={{
  9. display: 'flex',
  10. flexDirection: { xs: 'column', md: 'row' },
  11. backgroundColor: 'primary.main',
  12. height: '100%',
  13. paddingTop: '64px',
  14. paddingBottom: '62px',
  15. }}
  16. >
  17. <Box
  18. sx={{
  19. width: { xs: '100%', lg: '50%' },
  20. height: '100%',
  21. display: 'flex',
  22. flexDirection: 'column',
  23. alignItems: 'center',
  24. justifyContent: 'center',
  25. paddingBottom: { xs: '60px', md: '0px' },
  26. }}
  27. >
  28. <Typography
  29. variant="h3"
  30. sx={{
  31. fontSize: { xs: '32px', md: '38px', lg: '48px' },
  32. textAlign: 'center',
  33. width: '100%',
  34. color: 'white',
  35. }}
  36. >
  37. We are waiting for you!
  38. </Typography>
  39. <Box
  40. sx={{
  41. mt: 3,
  42. display: 'flex',
  43. width: '100%',
  44. justifyContent: 'center',
  45. height: 60,
  46. textAlign: 'center',
  47. }}
  48. >
  49. <Image src="/images/pin.svg" alt="map" width={50} height={50} />
  50. <Typography
  51. sx={{
  52. color: 'white',
  53. pt: 2,
  54. pl: 2,
  55. }}
  56. >
  57. Nis, Zetska 36
  58. </Typography>
  59. </Box>
  60. <Box
  61. sx={{
  62. mt: 3,
  63. display: 'flex',
  64. width: '100%',
  65. justifyContent: 'center',
  66. height: 60,
  67. }}
  68. >
  69. <Image src="/images/clock.svg" alt="map" width={50} height={50} />
  70. <Typography
  71. sx={{
  72. color: 'white',
  73. pt: 2,
  74. pl: 2,
  75. mr: -4,
  76. }}
  77. >
  78. Every day: 09 to 18
  79. </Typography>
  80. </Box>
  81. <Box
  82. sx={{
  83. mt: 3,
  84. display: 'flex',
  85. width: '100%',
  86. justifyContent: 'center',
  87. height: 60,
  88. }}
  89. >
  90. <Image src="/images/mail.svg" alt="map" width={50} height={50} />
  91. <Typography
  92. sx={{
  93. color: 'white',
  94. pt: 2,
  95. pl: 2,
  96. mr: -3,
  97. }}
  98. >
  99. info@coffee.com
  100. </Typography>
  101. </Box>
  102. </Box>
  103. <Box
  104. display="flex"
  105. justifyContent="center"
  106. alignItems="center"
  107. sx={{ width: { xs: '100%', lg: '50%' } }}
  108. >
  109. <Box>
  110. <Image src="/images/maps.svg" alt="map" width={1280} height={720} />
  111. </Box>
  112. </Box>
  113. </Box>
  114. </>
  115. );
  116. };
  117. export default CompanyInfo;