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;