|
@@ -1,6 +1,6 @@
|
1
|
1
|
import React from 'react';
|
2
|
2
|
import { Box, Typography, TextField, Button, InputAdornment } from '@mui/material';
|
3
|
|
-import SearchIcon from "@mui/icons-material/Search";
|
|
3
|
+import logoSrc from "../../assets/svg/logofooter.svg";
|
4
|
4
|
import Grid from '@mui/material/Grid2';
|
5
|
5
|
|
6
|
6
|
const Footer = () => {
|
|
@@ -10,27 +10,23 @@ const Footer = () => {
|
10
|
10
|
backgroundColor: 'background.default',
|
11
|
11
|
mb: 10,
|
12
|
12
|
mt: 15,
|
13
|
|
- px:{
|
14
|
|
- xs:2,
|
15
|
|
- md:12,
|
16
|
|
- lg:20
|
|
13
|
+ px: {
|
|
14
|
+ xs: 2,
|
|
15
|
+ md: 12,
|
|
16
|
+ lg: 20
|
17
|
17
|
}
|
18
|
18
|
}}
|
19
|
19
|
>
|
|
20
|
+ <img src={logoSrc} alt="Logo"
|
|
21
|
+ style={{
|
|
22
|
+ width: 150,
|
|
23
|
+ height: 50,
|
|
24
|
+ }}
|
|
25
|
+ />
|
20
|
26
|
|
21
|
27
|
<Grid container spacing={2} justifyContent="space-evenly">
|
22
|
28
|
|
23
|
|
- <Grid item size={{xs:12, sm:6, md:3}} sx={{ position: "relative" }}>
|
24
|
|
-
|
25
|
|
- <Typography variant="h5" sx={{
|
26
|
|
- color: 'primary.main', // Use primary color
|
27
|
|
- letterSpacing: 15,
|
28
|
|
- fontWeight: "bold",
|
29
|
|
- position: "absolute",
|
30
|
|
- top:-60
|
31
|
|
- }}>
|
32
|
|
- AMBER
|
33
|
|
- </Typography>
|
|
29
|
+ <Grid item size={{ xs: 12, sm: 6, md: 3 }} sx={{ position: "relative" }}>
|
34
|
30
|
|
35
|
31
|
<Typography variant="body1" sx={{ fontWeight: "bold", mb: 4 }}>
|
36
|
32
|
Contact Info
|
|
@@ -39,7 +35,7 @@ const Footer = () => {
|
39
|
35
|
<Typography variant="body2" sx={{ maxWidth: 250 }}><span style={{ fontWeight: "bold" }}>Address:</span> Lot G-77, Wangsa Walk Mall, Wangsa Avenue, No.9, Jalan Wangsa Perdana 1, Bandar Wangsa Maju, 53300 Kuala Lumpur, Malaysia</Typography>
|
40
|
36
|
</Grid>
|
41
|
37
|
|
42
|
|
- <Grid item size={{xs:12, sm:6, md:3}}>
|
|
38
|
+ <Grid item size={{ xs: 12, sm: 6, md: 3 }}>
|
43
|
39
|
<Typography variant="body1" sx={{ fontWeight: "bold", mb: 4 }}>
|
44
|
40
|
Get Help
|
45
|
41
|
</Typography>
|
|
@@ -62,7 +58,7 @@ const Footer = () => {
|
62
|
58
|
</nav>
|
63
|
59
|
</Grid>
|
64
|
60
|
|
65
|
|
- <Grid item size={{xs:12, sm:6, md:3}}>
|
|
61
|
+ <Grid item size={{ xs: 12, sm: 6, md: 3 }}>
|
66
|
62
|
<Typography variant="body1" sx={{ fontWeight: "bold", mb: 4 }}>
|
67
|
63
|
Popular Categories
|
68
|
64
|
</Typography>
|
|
@@ -87,7 +83,7 @@ const Footer = () => {
|
87
|
83
|
|
88
|
84
|
|
89
|
85
|
|
90
|
|
- <Grid item size={{xs:12, sm:6, md:3}}>
|
|
86
|
+ <Grid item size={{ xs: 12, sm: 6, md: 3 }}>
|
91
|
87
|
<Typography variant="body1" sx={{ fontWeight: "bold", mb: 4 }}>
|
92
|
88
|
Let’s stay in touch
|
93
|
89
|
</Typography>
|