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.

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