diff --git a/docs/src/App.tsx b/docs/src/App.tsx
index 53e8212..ff5f26e 100644
--- a/docs/src/App.tsx
+++ b/docs/src/App.tsx
@@ -2,11 +2,11 @@ import { ToastContainer } from "react-toastify";
import styled from "styled-components";
import { DopeHeader } from "./components/DopeHeader";
import { DopeMascot } from "./components/DopeMascot";
-import { GHIcon } from "./components/GHIcon";
import { InfoModal } from "./components/InfoModal";
import KeyValueForm from "./components/KeyValueForm";
import MapVisualizer from "./components/MapVisualizer";
import { useWindowSize } from "@uidotdev/usehooks";
+import { IconLinks } from "./components/IconLinks";
const AppWrapper = styled.div`
max-width: 1200px;
@@ -62,12 +62,12 @@ function App() {
)}
- {windowSize.width > 768 && }
+ {windowSize.width > 768 && }
- {windowSize.width <= 768 && }
+ {windowSize.width <= 768 && }
-
-
- );
-}
diff --git a/docs/src/components/IconLinks.tsx b/docs/src/components/IconLinks.tsx
new file mode 100644
index 0000000..f55325b
--- /dev/null
+++ b/docs/src/components/IconLinks.tsx
@@ -0,0 +1,69 @@
+import styled from "styled-components";
+import { DopeColors } from "../constants";
+
+const Container = styled.div`
+ display: flex;
+ flexdirection: row;
+`;
+
+const GH = styled.i`
+ @keyframes colorPulse {
+ 0% {
+ color: ${DopeColors.pink};
+ }
+ 50% {
+ color: ${DopeColors.green};
+ }
+ 100% {
+ color: ${DopeColors.pink};
+ }
+ }
+
+ color: ${DopeColors.black};
+ transition: transform 0.3s ease, color 1.2s ease;
+
+ &:hover {
+ transform: scale(1.2) rotate(8deg);
+ animation: colorPulse 1.2s infinite;
+ }
+`;
+
+const LI = styled.i`
+ @keyframes colorPulse {
+ 0% {
+ color: ${DopeColors.pink};
+ }
+ 50% {
+ color: ${DopeColors.blue};
+ }
+ 100% {
+ color: ${DopeColors.pink};
+ }
+ }
+
+ color: ${DopeColors.black};
+ transition: transform 0.3s ease, color 1.2s ease;
+
+ &:hover {
+ transform: scale(1.2) rotate(8deg);
+ animation: colorPulse 1.2s infinite;
+ }
+`;
+
+const Separator = styled.div`
+ width: 16px;
+`;
+
+export function IconLinks() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}