diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx index e7e5bcd..e0df024 100644 --- a/src/components/Header/Header.tsx +++ b/src/components/Header/Header.tsx @@ -16,6 +16,7 @@ import receiptSpec from "../../assets/receipt-spec.svg"; import calculator from "../../assets/calculator.svg"; import calculatorSpec from "../../assets/calculator-spec.svg"; import "./Header.css"; +import { ArrowUpRightCircle } from "phosphor-react"; type HeaderProps = {}; @@ -24,6 +25,16 @@ const variants = { visible: { opacity: 1, transition: { duration: 0.2 } }, }; +const handleGetStarted = () => { + window.open("https://github.com/rektdeckard/phosphor-web#phosphor-icons"); +}; + +const handleScrollToIcons = () => { + document + .getElementById("toolbar") + ?.scrollIntoView({ behavior: "smooth", block: "start" }); +}; + const Header: React.FC = () => { const [hovered, setHovered] = useState(false); const clearHover = () => setHovered(false); @@ -208,16 +219,13 @@ const Header: React.FC = () => { presentations – whatever really.
- + -