diff --git a/src/components/Banner/Banner.tsx b/src/components/Banner/Banner.tsx index 1fb6507..af87e19 100644 --- a/src/components/Banner/Banner.tsx +++ b/src/components/Banner/Banner.tsx @@ -1,24 +1,26 @@ import React from "react"; -import { Medal } from "phosphor-react"; +import { Medal } from "phosphor-react"; +import ReactGA from "react-ga"; import "./Banner.css"; const Banner = () => { + const handleClick = () => { + ReactGA.event({ category: "Outbound", action: "Click", label: "Vote" }); + window.open( + "https://www.figma.com/community/file/903830135544202908", + "_blank", + "noopener noreferrer" + ); + }; + return (
- The 2022 Figma Community Awards are here! - + The 2022 Figma Community Awards are here! +
); };