Skip to content

Commit

Permalink
test change
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-junaid committed Aug 8, 2023
1 parent 1c0f480 commit 6305a33
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/components/Home/Home.jsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import React from "react";
import Typed from "react-typed";
import React from "react"
import Typed from "react-typed"

// SVG
import man from "images/dev.svg";
import man from "images/dev.svg"

// Animation
import { Link } from "react-scroll";
import { motion } from "framer-motion";
import { Link } from "react-scroll"
import { motion } from "framer-motion"

// CSS
import "./home.css";
import Button from "components/Button/Button";
import "./home.css"
import Button from "components/Button/Button"

const contentVariants = {
initial: {
Expand All @@ -26,7 +26,7 @@ const contentVariants = {
when: "beforeChildren",
},
},
};
}

const Home = () => {
return (
Expand All @@ -42,7 +42,7 @@ const Home = () => {
<p>
I am a
<span
style={{ fontSize: "1.5rem", fontWeight: "600", marginLeft: "2%" }}
style={{ fontSize: "1.5rem ", fontWeight: "600", marginLeft: "2%" }}
>
<Typed
strings={["Full Stack Developer", "Level One Seller at Fiverr"]}
Expand All @@ -62,7 +62,7 @@ const Home = () => {
offset={-100}
duration={500}
>
<Button text={"See my work"} type="submit" />
<Button text={"See my work"} type="submit" />
</Link>
</motion.div>

Expand All @@ -74,7 +74,7 @@ const Home = () => {
<img src={man} alt="Developer" />
</motion.div>
</section>
);
};
)
}

export default Home;
export default Home

0 comments on commit 6305a33

Please sign in to comment.