5. Create SearchExercise Section
....Here is how you make UI.Later we will fetch data for this section.
import React, { useState, useEffect } from "react";
import { Box, Typography, Stack, TextField, Button } from "@mui/material";
const SearchExercises = () => {
return (
<Stack justifyContent="center" alignItems="center" mt="37px" p="20px">
<Typography
fontWeight={700}
sx={{ fontSize: { lg: "44px", xs: "30px" } }}
mb="50px"
textAlign="center"
>
Awesome Exercises You <br />
Should Know
</Typography>
<Box position="relative" mb="72px">
<TextField
sx={{
input: {
fontWeight: "700",
border: "none",
borderRadius: "4px",
},
width: { lg: "800px", xs: "350px" },
backgroundColor: "#fff",
borderRadius: "40px",
}}
height="76px"
value=""
onChange={(e) => {}}
placeholder="Search Exercises"
type="text"
/>
<Button
className="search-btn"
// variant="contained"
sx={{
backgroundColor: "#ff2625",
color: "#fff",
textTransform: "none",
width: { lg: "200px", xs: "80px" },
fontSize: { lg: "20x", xs: "14px" },
height: "56px",
position: "absolute",
right: "0",
}}
>
Search
</Button>
</Box>
</Stack>
);
};
export default SearchExercises;
.
.
.
.
.
Comments
Post a Comment