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 2.7KB

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