Skip to content

Commit

Permalink
homepage updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-marcoC committed May 22, 2024
1 parent 8d4e9f2 commit 88bb45e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
23 changes: 14 additions & 9 deletions frontend/src/components/home/MapViewerEntrypoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ export default function MapViewerEntrypoint() {
<Grid
container
spacing={4}
sx={{ flexDirection: { xs: "column-reverse", lg: "unset" } }}
/* sx={{ flexDirection: { xs: "column-reverse", lg: "unset" } }} */
>
<Grid
item
xs={12}
lg={7}
sx={{ display: "flex", justifyContent: "end" }}
lg={12}
sx={{ display: "flex", justifyContent: "center" }}
>
<Box
sx={{
height: "370px",
height: "486px",
borderRadius: "30px",
border: " 6px solid gray",
width: "1100px",
border: "10px solid gray",
width: "100%",
}}
>
<Box
Expand All @@ -56,8 +56,13 @@ export default function MapViewerEntrypoint() {
</Box>
</Box>
</Grid>
<Grid xs={12} item lg={5}>
<Typography
<Grid
xs={12}
item
lg={12}
sx={{ display: "flex", justifyContent: "center" }}
>
{/* <Typography
fontWeight={{ xs: 800, lg: 700 }}
sx={{ fontSize: "36px", color: palette + "colorTypography" }}
gutterBottom
Expand All @@ -71,7 +76,7 @@ export default function MapViewerEntrypoint() {
Lorem ipsum dolor sit amet consectetur. Sit scelerisque gravida
commodo justo. Ut a sed nisl rutrum leo nulla. Semper a massa
facilisis eu et orci nec justo.
</Typography>
</Typography> */}
<Button
variant="contained"
disableElevation
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/home/TypesCount.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ export default function TypesCount() {
>
<Container maxWidth="xl" sx={{ py: { xs: 2, lg: 8 } }}>
<Grid container spacing={2}>
<Grid item xs={12} lg={5}>
{/* <Grid item xs={12} lg={5}>
<SearchHubEntrypoint />
</Grid>
</Grid> */}
<Grid
item
container
spacing={2}
xs={12}
lg={7} /* sx={{ p: "24px" }} */
lg={12} /* sx={{ p: "24px" }} */
>
<Grid item xs={12}>
<Search />
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/search/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ const SearchHome = (props) => {
sx={{
marginRight: 1,
color: {
xs: palette + "bgColorSelectMobile",
xs: palette + "bgColor",
lg: palette + "iconsColor",
},
}}
Expand All @@ -325,7 +325,7 @@ const SearchHome = (props) => {
lg: palette + "bgColor",
},
color: {
xs: palette + "bgColorSelectMobile",
xs: palette + "bgColor",
lg: palette + "iconsColor",
},
fontWeight: 600,
Expand Down

0 comments on commit 88bb45e

Please sign in to comment.