From 0d95039ac3505f92d3074173dfe8330ffc1a56b5 Mon Sep 17 00:00:00 2001 From: zojgame Date: Thu, 21 Mar 2024 18:32:08 +0500 Subject: [PATCH] little fix --- src/app/page.tsx | 3 +- src/components/Winners.tsx | 4 +-- src/components/icons/InsertArrowIcon.tsx | 35 ++++++++++++++++++++++++ 3 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 src/components/icons/InsertArrowIcon.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a2b9c5..e5e2b14 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,6 +28,7 @@ import YouTubeIcon from "@components/icons/YouTubeIcon"; import TelegramIcon from "@components/icons/TelegramIcon"; import { IProject } from "../types/IProject"; import Histories from "@components/Histories"; +import Winners from "@components/Winners"; export default function App() { const [selectedVideo, setSelectedVideo] = useState( @@ -639,7 +640,7 @@ export default function App() { - +
diff --git a/src/components/Winners.tsx b/src/components/Winners.tsx index c0b6638..337e9a7 100644 --- a/src/components/Winners.tsx +++ b/src/components/Winners.tsx @@ -1,8 +1,8 @@ -import InsertArrowIcon from "../icons/InsertArrowIcon"; +import InsertArrowIcon from "./icons/InsertArrowIcon"; const Winners = () => { return ( -
+
awards
diff --git a/src/components/icons/InsertArrowIcon.tsx b/src/components/icons/InsertArrowIcon.tsx new file mode 100644 index 0000000..6472c9b --- /dev/null +++ b/src/components/icons/InsertArrowIcon.tsx @@ -0,0 +1,35 @@ +const InsertArrowIcon = () => { + return ( + + + + + + + + + ); +}; + +export default InsertArrowIcon;