diff --git a/src/pages/CustomHooks/use-outside-click/test.jsx b/src/pages/CustomHooks/use-outside-click/test.jsx index f908ffe..a7c1b46 100644 --- a/src/pages/CustomHooks/use-outside-click/test.jsx +++ b/src/pages/CustomHooks/use-outside-click/test.jsx @@ -8,11 +8,11 @@ const UseOnClickOutsideTest = () => { useOutsideClick(ref, () => setShowContent(false)); return ( -
+
{showContent ? (

This is a random content

diff --git a/src/pages/GithubProfileFinder/GithubProfileFinder.jsx b/src/pages/GithubProfileFinder/GithubProfileFinder.jsx index a8d8e57..821dead 100644 --- a/src/pages/GithubProfileFinder/GithubProfileFinder.jsx +++ b/src/pages/GithubProfileFinder/GithubProfileFinder.jsx @@ -40,7 +40,7 @@ export const GithubProfileFinder = () => { value={userName} onChange={(event) => setUserName(event.target.value)} /> -

diff --git a/src/pages/Home.jsx b/src/pages/Home.jsx index 69ca6f8..4e072c3 100644 --- a/src/pages/Home.jsx +++ b/src/pages/Home.jsx @@ -1,4 +1,5 @@ import { projects } from "@/data/projects"; +import { FaArrowRight, FaStar } from "react-icons/fa"; import { Link } from "react-router-dom"; function Home({ setCursorVariant }) { @@ -23,10 +24,19 @@ function Home({ setCursorVariant }) { }; return ( -
+
+
+
+
+
+
+
+ +

Hello there

+

Discover Awesome React.js{" "}

-
+
{renderProjectLinks()}
diff --git a/src/pages/RandomColor.jsx b/src/pages/RandomColor.jsx index fe44199..a923689 100644 --- a/src/pages/RandomColor.jsx +++ b/src/pages/RandomColor.jsx @@ -32,7 +32,7 @@ function RandomColor() { className={`container flex flex-1 flex-col items-center justify-start gap-8 my-10 w-full h-screen py-10`} style={{ background: color }} > -
+
-
+
{data && data.length > 0 ? ( data.map((dataItem) => (