Skip to content

Commit

Permalink
correction
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-adi committed Jul 20, 2024
1 parent 7bb0f35 commit bcb4d3c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
Binary file added public/Image/download.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Component/About/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function About() {
<>
<AboutContainer id="about">
<AboutWrapper>
<img src="./Image/myImage.jpg" alt="" data-aos="fade-right" />
<img src="./Image/download.jpg" alt="" data-aos="fade-right" />
<AboutPart data-aos="fade-left">
<h1>About Me</h1>
<p>
Expand Down
30 changes: 15 additions & 15 deletions src/Component/Contact/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function Contact() {
</p>
<div className="contact">
<span>
<IoMdMail /> Adity@mail.com
<IoMdMail /> Aditya@mail.com
</span>
<span>
{" "}
Expand All @@ -38,12 +38,12 @@ function Contact() {
</LeftSide>
<RightSide data-aos="fade-left">
<div className=" relative w-full">
<label htmlFor="" className=" absolute mt-[-0.7rem] ml-2 bg-black pl-2 pr-2">Your Name</label>
<FormInput type="text" name="" id="" />
<label htmlFor="name" className=" absolute mt-[-0.7rem] ml-2 bg-black pl-2 pr-2">Your Name</label>
<FormInput type="text" name="name" id="" />
</div>
<div className=" relative w-full">
<label htmlFor="" className=" absolute mt-[-0.7rem] ml-2 bg-black pl-2 pr-2">Your Mail</label>
<FormInput type="text" name="" id="" />
<label htmlFor="mail" className=" absolute mt-[-0.7rem] ml-2 bg-black pl-2 pr-2">Your Mail</label>
<FormInput type="text" name="mail" id="" />
</div>

<textarea name="" id=""></textarea>
Expand All @@ -58,7 +58,7 @@ function Contact() {
export default Contact;

const ContactContainer = styled.div`
font-family: "Mali", cursive;
font-weight: 100;
height: 100%;
display: flex;
Expand Down Expand Up @@ -150,14 +150,7 @@ const RightSide = styled.div`
justify-content: space-evenly;
gap: 2rem;
/* input {
padding: 13px 0px;
width: 100%;
border-radius: 3px;
border: 1px solid rgba(72, 72, 72, 1);
color: var(--textcolor);
background-color: #000000;
} */
textarea {
width: 100%;
height: 190px;
Expand All @@ -180,11 +173,18 @@ const RightSide = styled.div`
}
`;

const FormInput = styled.div`
const FormInput = styled.input`
padding: 1.4rem 0px;
width: 100%;
border-radius: 3px;
border: 1px solid rgba(72, 72, 72, 1);
color: var(--textcolor);
background-color: #000000;
@media screen and (max-width: 900px) {
label{
color: red;
}
}
`;
4 changes: 2 additions & 2 deletions src/Component/Hero/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function Hero() {
quae, laborum qui vitae a suscipit? Ius{" "}
</p>
<a
href="Interview.pdf"
// href="Interview.pdf"
download="Interview question.pdf"
className=" no-underline"
>
Expand All @@ -68,7 +68,7 @@ export function Hero() {

<img
data-aos="fade-left"
src="./Image/myImage.jpg"
src="./Image/download.jpg"
alt=""
className="aspect-square
w-1/3 rounded-full mt-24 border-4 border-solid"
Expand Down

0 comments on commit bcb4d3c

Please sign in to comment.