From 8023e358e04aee4776b1016059de9dfa69278fd6 Mon Sep 17 00:00:00 2001 From: Meenakshi Dhanani Date: Wed, 17 May 2023 17:25:47 -0500 Subject: [PATCH 1/2] Website/conf: Add Partners section to display media and community partner logos (#1449) --- src/assets/css/_css/brand.less | 10 + src/components/Conf/Footer/index.tsx | 2 + src/components/Conf/Partners/index.tsx | 88 + .../img/conf/Partners/EscapeTechnologies.svg | 11389 ++++++++++++++++ static/img/conf/Partners/GraphQLWeekly.svg | 27 + static/img/conf/Partners/Graphqlwtf.svg | 19 + 6 files changed, 11535 insertions(+) create mode 100644 src/components/Conf/Partners/index.tsx create mode 100644 static/img/conf/Partners/EscapeTechnologies.svg create mode 100644 static/img/conf/Partners/GraphQLWeekly.svg create mode 100644 static/img/conf/Partners/Graphqlwtf.svg diff --git a/src/assets/css/_css/brand.less b/src/assets/css/_css/brand.less index 315b618169..9314d3c2d6 100644 --- a/src/assets/css/_css/brand.less +++ b/src/assets/css/_css/brand.less @@ -285,4 +285,14 @@ .zoom-silver:hover { transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */ } + .zoom-partner { + transition: transform .2s; /* Animation */ + width: 158px; + height: 62px; + cursor: pointer; + } + + .zoom-partner:hover { + transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */ + } } \ No newline at end of file diff --git a/src/components/Conf/Footer/index.tsx b/src/components/Conf/Footer/index.tsx index b83b1277c5..70aa746c6e 100644 --- a/src/components/Conf/Footer/index.tsx +++ b/src/components/Conf/Footer/index.tsx @@ -1,6 +1,7 @@ import React from "react" import SocialIcons from "../SocialIcons" import SponsersConf from "../Sponers" +import PartnersConf from "../Partners" const links = [ [ @@ -28,6 +29,7 @@ const FooterConf = () => { return ( <> +