diff --git a/src/components/intro.jsx b/src/components/intro.jsx index 2606f0f..b16bd7d 100644 --- a/src/components/intro.jsx +++ b/src/components/intro.jsx @@ -1,8 +1,6 @@ "use client"; -import Head from "next/head"; - -import React, { Fragment, useEffect, useRef, useState } from "react"; +import React, { useEffect, useRef, useState } from "react"; import { TypeAnimation } from "react-type-animation"; const Intro = () => { @@ -43,57 +41,50 @@ const Intro = () => { }, [homeRef, isHome]); return ( - - - Amr Abed - -
+
+
-
+ className={ + "translate-x-[500px] transition-all opacity-0 duration-700 w-[300px] h-[300px] md:w-[400px] md:h-[400px] bg-cover m-auto md:m-0 mt-[40px] md:mt-0 bg-no-repeat rounded-full" + } + ref={profileRef} + style={{ + backgroundImage: + "url(https://avatars.githubusercontent.com/u/3361565?v=4)", + }} + /> -
- {/* Profile Name */} -

- I'm - - {" a"} - - -

-
+
+

+ I'm + + {" a"} + + +

-
- + +
); };