feature/new_ui #32
|
|
@ -179,29 +179,58 @@ const HomePage: React.FC = () => {
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid >
|
</Grid >
|
||||||
{/* Grid 2 */}
|
{/* Grid 2 */}
|
||||||
<Box sx={{ width: '100%', height: 'auto', textAlign: 'center', mb: 20, mt: 20 }}>
|
<Box sx={{ width: '100%', height: 'auto', textAlign: 'center', mb: { xs: 10, md: 20 }, mt: { xs: 10, md: 20 } }}>
|
||||||
<Grid container justifyContent="center">
|
<Grid container justifyContent="center">
|
||||||
<Grid item lg={10} xs={12} md={10}>
|
<Grid item lg={10} xs={10} md={10}>
|
||||||
<Typography variant="h4" fontWeight="bold" gutterBottom textAlign="left">
|
<Typography
|
||||||
|
variant="h4"
|
||||||
|
sx={{
|
||||||
|
fontSize: { xs: '28px', md: '36px', lg: '42px' },
|
||||||
|
textAlign: "left",
|
||||||
|
fontFamily: "Helvetica Neue, Arial, sans-serif",
|
||||||
|
fontWeight: "bold"
|
||||||
|
}}
|
||||||
|
gutterBottom
|
||||||
|
>
|
||||||
The Process
|
The Process
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography variant="body1" sx={{ fontSize: { xs: '14px', md: '18px' }, textAlign: 'left' }}>
|
<Typography
|
||||||
|
variant="body1"
|
||||||
|
sx={{
|
||||||
|
fontSize: { xs: '14px', md: '18px', lg: '20px' },
|
||||||
|
textAlign: 'left',
|
||||||
|
fontFamily: "SF Pro Regular, Arial, sans-serif",
|
||||||
|
lineHeight: { xs: '1.4', md: '1.6' }
|
||||||
|
}}
|
||||||
|
>
|
||||||
Raw materials are extracted through destructive mining practices, causing habitat loss, soil erosion, and water contamination.
|
Raw materials are extracted through destructive mining practices, causing habitat loss, soil erosion, and water contamination.
|
||||||
Components are assembled into finished products in factories, further increasing emissions and producing hazardous waste that is hard to dispose of.
|
Components are assembled into finished products in factories, further increasing emissions and producing hazardous waste that is hard to dispose of.
|
||||||
Devices are used by consumers and businesses, but their production and usage contribute significantly to carbon footprints, energy consumption, and waste generation.
|
Devices are used by consumers and businesses, but their production and usage contribute significantly to carbon footprints, energy consumption, and waste generation.
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography variant="h2" fontWeight="bold" color="green" sx={{ mt: 9,mb:10, textAlign: "left" }}>
|
<Typography
|
||||||
|
variant="h2"
|
||||||
|
sx={{
|
||||||
|
mt: { xs: 5, md: 9 },
|
||||||
|
mb: { xs: 5, md: 10 },
|
||||||
|
textAlign: "left",
|
||||||
|
fontFamily: "SF Pro Regular, Arial, sans-serif",
|
||||||
|
fontSize: { xs: '32px', md: '48px', lg: '64px' },
|
||||||
|
color: "#95CD41",
|
||||||
|
fontWeight: "bold"
|
||||||
|
}}
|
||||||
|
>
|
||||||
This is where we come in.
|
This is where we come in.
|
||||||
</Typography>
|
</Typography>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
|
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
height: { xl: 1800, lg: 700 },
|
height: { xl: 1800, lg: 700 },
|
||||||
width: '100%',
|
width: '100%',
|
||||||
backgroundImage: `url(${newbackground})`,
|
backgroundImage: { xs: 'none', lg: `url(${newbackground})` },
|
||||||
backgroundSize: "261px 220px",
|
backgroundSize: "261px 220px",
|
||||||
backgroundPosition: "638px 290px",
|
backgroundPosition: "638px 290px",
|
||||||
backgroundRepeat: "no-repeat",
|
backgroundRepeat: "no-repeat",
|
||||||
|
|
@ -325,8 +354,8 @@ const HomePage: React.FC = () => {
|
||||||
<Grid container spacing={2} rowSpacing={{ xs: 9, sm: 36, md: 16 }}
|
<Grid container spacing={2} rowSpacing={{ xs: 9, sm: 36, md: 16 }}
|
||||||
sx={{
|
sx={{
|
||||||
display: { xs: "flex", md: "flex", lg: 'none' },
|
display: { xs: "flex", md: "flex", lg: 'none' },
|
||||||
backgroundImage: { lg: null, xs: `url(${mobileback})` },
|
backgroundImage: { lg: null, xs: `url(${newbackground})` },
|
||||||
backgroundSize: { xs: "60%", md: "40%", sm: '70%' },
|
backgroundSize: { xs: "30%", md: "22%", sm: '50%' },
|
||||||
backgroundPosition: { xs: "50% 54%", md: '50% 52%' },
|
backgroundPosition: { xs: "50% 54%", md: '50% 52%' },
|
||||||
backgroundRepeat: "no-repeat",
|
backgroundRepeat: "no-repeat",
|
||||||
}}>
|
}}>
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ const WhyChooseUs: React.FC = () => {
|
||||||
item
|
item
|
||||||
key={index}
|
key={index}
|
||||||
xs={6}
|
xs={6}
|
||||||
sm={2}
|
sm={6}
|
||||||
display="flex"
|
display="flex"
|
||||||
justifyContent="center"
|
justifyContent="center"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue