From 15dc025d870abfea053975cb9ec24c1032dc3413 Mon Sep 17 00:00:00 2001
From: Guillermo Alejandro Gallardo Diez
Date: Thu, 22 Jan 2026 11:34:38 +0100
Subject: [PATCH] chore: even less distracting menu
---
website/docusaurus.config.js | 31 +-
.../pages/communities/communities.module.scss | 254 ---------------
website/src/pages/communities/index.jsx | 305 ------------------
website/src/theme/Footer/index.js | 19 +-
.../NavbarItem/DropdownNavbarItem/index.js | 2 +-
website/static/assets/menu/agorApp.svg | 81 -----
website/static/assets/menu/analytics.png | Bin 0 -> 18085 bytes
website/static/assets/menu/remix.svg | 66 ----
website/static/assets/menu/x.svg | 3 -
9 files changed, 13 insertions(+), 748 deletions(-)
delete mode 100644 website/src/pages/communities/communities.module.scss
delete mode 100644 website/src/pages/communities/index.jsx
delete mode 100644 website/static/assets/menu/agorApp.svg
create mode 100644 website/static/assets/menu/analytics.png
delete mode 100644 website/static/assets/menu/remix.svg
delete mode 100644 website/static/assets/menu/x.svg
diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index 65fd8684ee3..7c9667b0c4c 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -110,7 +110,7 @@ const config = {
items: [
{
type: 'dropdown',
- label: 'Start Here',
+ label: 'Get Started',
position: 'left',
activeBaseRegex: 'tutorials',
items: [
@@ -147,8 +147,9 @@ const config = {
items: [
{
to: '/api/rpc/introduction',
- label: '🔌 RPC API',
+ label: 'RPC API',
description: 'Low level API to interact with NEAR',
+ icon: '/assets/menu/analytics.png',
},
{
@@ -176,10 +177,10 @@ const config = {
icon: '/assets/docs/welcome-pages/near-cli.png',
},
{
- label: 'NEAR Connect',
+ label: 'Wallet Connector',
to: '/tools/near-connect',
description: 'Integrate multiple wallets into your application',
- icon: '/assets/docs/welcome-pages/multiple.png',
+ icon: '/assets/docs/welcome-pages/frontend-bos.png',
},
],
},
@@ -187,7 +188,7 @@ const config = {
},
{
type: 'dropdown',
- label: 'Tools',
+ label: 'Utilities',
position: 'left',
items: [
{
@@ -213,15 +214,8 @@ const config = {
to: 'https://nearplay.app/',
target: '_blank',
description: 'Write, test and deploy smart contracts in your browser',
- icon: '/assets/menu/contract.svg',
- },
- {
- label: 'Learn NEAR Club ↗',
- to: 'https://learnnear.club/',
- description: 'All inclusive hands-on onboarding platform to NEAR Protocol',
- icon: '/assets/menu/lnc.jpg',
+ icon: '/assets/menu/catalog.png',
},
-
],
},
{
@@ -229,10 +223,9 @@ const config = {
to: '#',
description: 'Discover events, news and projects',
subitems: [
- { label: 'Events', to: '/events', description: "Find what's coming up in the NEAR ecosystem", icon: '/assets/menu/event.png' },
{ label: 'Blog', to: '/blog', description: "Read blog posts from our community", icon: '/assets/menu/near.svg' },
- { label: 'Newsletter', to: '/newsletter', description: "Catch up with the latest news from NEAR", icon: '/assets/menu/newspaper.png' },
- { label: 'Communities', "to": "/communities", description: "Find a NEAR community near you", icon: "/assets/menu/communities.png" },
+ { label: 'Events', to: '/events', description: "Find what's coming up in the NEAR ecosystem", icon: '/assets/menu/event.png' },
+ { label: 'Newsletter', to: '/newsletter', description: "Catch up with the latest news from NEAR", icon: '/assets/menu/newspaper.png' }
]
},
{
@@ -246,12 +239,6 @@ const config = {
description: 'Join our Telegram channel for developers',
icon: '/assets/menu/telegram.svg',
},
- {
- label: 'Discord ↗',
- to: 'https://discord.gg/nearprotocol',
- description: 'Join our Discord server to get help from the community',
- icon: '/assets/menu/discord.svg',
- },
{
label: 'WeChat ↗',
to: 'https://pages.near.org/ecosystem/community/wechat/',
diff --git a/website/src/pages/communities/communities.module.scss b/website/src/pages/communities/communities.module.scss
deleted file mode 100644
index 49faff6579a..00000000000
--- a/website/src/pages/communities/communities.module.scss
+++ /dev/null
@@ -1,254 +0,0 @@
-/* Communities Container */
-.container-communities {
- max-width: 1200px;
- margin: 1.5rem auto;
- display: grid;
- grid-template-columns: 2fr 1fr;
- gap: 1.5rem;
-}
-
-/* Main Card - override some Card component styles */
-.main-card {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
-}
-
-/* Channels Section */
-.channels-grid {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 1rem;
- margin-top: 1rem;
-}
-
-.channel-item {
- display: flex;
- align-items: center;
- padding: 1rem;
- border-radius: 0.5rem;
- text-decoration: none;
- color: #2d3748;
- font-weight: 500;
- transition: all 0.2s ease;
- background: rgba(255, 255, 255, 0.3);
- text-decoration: none;
-}
-
-.channel-item:hover {
- background: rgba(255, 255, 255, 0.5);
- transform: translateY(-1px);
- text-decoration: none;
-}
-
-.channel-item__icon {
- margin-right: 0.75rem;
- font-size: 1.125rem;
- width: 1.25rem;
- height: 1.25rem;
-}
-
-.channel-item__text {
- flex: 1;
-}
-
-.channel-item__arrow {
- margin-left: auto;
- color: #718096;
- font-size: 0.875rem;
-}
-
-/* Sidebar */
-.sidebar {
- display: flex;
- flex-direction: column;
- gap: 1.25rem;
-}
-
-.sidebar-card {
- height: 100%;
-}
-
-.sidebar-card__info {
- font-size: 0.875rem;
- margin: 0;
-}
-
-.sidebar-card__button {
- display: inline-flex;
- align-items: center;
- padding: 0.75rem 1rem;
- background: rgba(255, 255, 255, 0.4);
- border: none;
- border-radius: 0.5rem;
- text-decoration: none;
- color: #2d3748;
- font-weight: 500;
- font-size: 0.875rem;
- transition: all 0.2s ease;
- cursor: pointer;
-}
-
-.sidebar-card__button:hover {
- background: rgba(255, 255, 255, 0.6);
- transform: translateY(-1px);
-}
-
-.sidebar-card__button-icon {
- margin-right: 0.5rem;
- width: 1.25rem;
- height: 1.25rem;
-}
-
-/* Responsive Design */
-@media (max-width: 768px) {
- .container-communities {
- grid-template-columns: 1fr;
- gap: 1.25rem;
- }
-
- .channels-grid {
- grid-template-columns: 1fr;
- }
-
- .main-card {
- padding: 1.5rem;
- }
-}
-
-/* Communities Section */
-.communities-section {
- margin: 2rem auto 4rem auto;
- width: 100%;
-
- .communities-container {
- max-width: 1200px;
- margin: 0 auto;
- }
-
- .communities-title {
- font-size: 3rem;
- font-weight: 700;
- color: #1a1a1a;
- margin-bottom: 2rem;
- }
-
- .communities-grid {
- display: grid;
- grid-template-columns: 1fr;
- gap: 0.75rem;
-
- @media (min-width: 480px) {
- grid-template-columns: repeat(2, 1fr);
- }
-
- @media (min-width: 768px) {
- grid-template-columns: repeat(3, 1fr);
- }
-
- @media (min-width: 1200px) {
- grid-template-columns: repeat(3, 1fr);
- }
- }
-
- .community-card {
- height: 100%;
-
- .community-content {
- display: flex;
- align-items: center;
- gap: 1rem;
- width: 100%;
- }
-
- .community-icon {
- width: 3.5rem;
- height: 3.5rem;
- border-radius: 50%;
- object-fit: cover;
- flex-shrink: 0;
- }
-
- .community-info {
- flex: 1;
- min-width: 0;
- }
-
- .community-name {
- font-size: 1.125rem;
- font-weight: 600;
- color: #1a1a1a;
- margin: 0 0 0.25rem 0;
- line-height: 1.3;
- }
-
- .community-summary {
- font-size: 0.875rem;
- color: #6b7280;
- margin: 0;
- line-height: 1.4;
- }
- }
-}
-
-
-
-[data-theme='dark'] {
- .channel-item {
- color: #e2e8f0;
- background: rgba(255, 255, 255, 0.06);
-
- &:hover {
- background: rgba(255, 255, 255, 0.10);
- }
- }
-
- .channel-item__arrow {
- color: #9ca3af;
- }
-
- .sidebar-card__info {
- color: #e2e8f0;
- }
-
- .sidebar-card__button {
- background: rgba(255, 255, 255, 0.1);
- color: #e2e8f0;
-
- &:hover {
- background: rgba(255, 255, 255, 0.2);
- }
- }
-
- .main-card,
- .sidebar-card,
- .community-card {
- background: rgba(255, 255, 255, 0.03);
- border: 1px solid rgba(255, 255, 255, 0.02);
- box-shadow: none;
- }
-
- .channels-grid {
- background: transparent;
- }
-
- .sidebar-card__button {
- border: 1px solid rgba(255, 255, 255, 0.02);
- }
-
- .communities-section {
- .communities-title {
- color: white;
- }
-
- .community-card {
- .community-name {
- color: white;
- }
-
- .community-summary {
- color: #9ca3af;
- }
- }
- }
-}
\ No newline at end of file
diff --git a/website/src/pages/communities/index.jsx b/website/src/pages/communities/index.jsx
deleted file mode 100644
index da6ec5d03d4..00000000000
--- a/website/src/pages/communities/index.jsx
+++ /dev/null
@@ -1,305 +0,0 @@
-import Layout from '@theme/Layout';
-import styles from './communities.module.scss';
-
-import TelegramIcon from '@site/static/assets/menu/telegram.svg';
-import DiscordIcon from '@site/static/assets/menu/discord.svg';
-import WeChatIcon from '@site/static/assets/menu/wechat.svg';
-import GitHubIcon from '@site/static/assets/menu/github.svg';
-import XIcon from '@site/static/assets/menu/x.svg';
-import DocsIcon from '@site/static/assets/menu/docs.svg';
-import SpeechBubbleIcon from '@site/static/assets/menu/speech-bubble.svg';
-import Accordion from '../../components/UI/Accordion';
-import Card from '../../components/UI/Card';
-
-const urls = {
- devHub: 'neardevhub.org',
- discord: 'https://near.chat',
- discourse: 'https://gov.near.org',
- docs: 'https://docs.near.org',
- getFunding: 'https://www.near.org/funding',
- github: 'https://github.com/near',
- hackenproof: 'https://hackenproof.com/near',
- helpCenter: 'https://nearhelp.zendesk.com/hc/en-us',
- nearWallet: 'https://wallet.near.org/',
- nearWeek: 'https://subscribe.nearweek.com/',
- supportRequest: 'https://nearhelp.zendesk.com/hc/en-us/requests/new',
- telegram: 'https://t.me/neardev',
- twitter: 'https://twitter.com/nearprotocol',
- wechat: 'https://pages.near.org/wechat',
- withdrawNearFunds:
- 'https://nearhelp.zendesk.com/hc/en-us/articles/360060927734-Staking-Unstaking-and-Withdrawing-NEAR',
- youtube: 'https://www.youtube.com/channel/UCuKdIYVN8iE3fv8alyk1aMw',
-};
-
-const featuredCommunities = [
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreibysr2mkwhb4j36h2t7mqwhynqdy4vzjfygfkfg65kuspd2bawauu',
- name: 'NEAR Dev',
- summary: 'An open community for developers',
- accountId: 'nearai.community.devhub.near',
- telegram: 'nearaialpha',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreihgxkxuvj67b7vwys5di2326vx7sdvw5jjswv2xqlyxhelhha52ra',
- name: 'NEAR AI',
- summary: 'A community for AI enthusiasts',
- accountId: 'nearai.community.devhub.near',
- telegram: 'nearaialpha',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreibi2p7h2jailau6fwt4zf2xdifsqhc4dabsowmngzswpzr7r4ikiq',
- name: 'Chain Abstraction',
- summary: 'Chain and Account Abstraction',
- accountId: 'chain-abstraction.community.devhub.near',
- telegram: 'chain_abstraction',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreidhehq7za5btjegq5u2rw5jmw2kygef2776d6qcpkopaa3nphg5pm',
- name: 'Tooling',
- summary: 'Supporting our tooling ecosystem',
- accountId: 'tooling.community.devhub.near',
- telegram: 'NEAR_Tools_Community_Group',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreib45plxkuy6wcefachijuq2dm4jnfs4236yhfleehqboeeljpmxje',
- name: 'Docs',
- summary: 'A space to talk about all NEAR docs',
- accountId: 'docs.community.devhub.near',
- telegram: 'neardocscg',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreicfcszhhmiw6bq5fvh7ebfqhmodplldxjve7id4mi67iykz67qehi',
- name: 'Build DAO',
- summary: 'The more you ship, the more you level up',
- accountId: 'build.community.devhub.near',
- telegram: '+bQmGfDqcAT9iYTcx',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreihdu5bsnvxoxi62j24ljd4o5gfebtgtn6gaj3n4ebq23qoprn7tou',
- name: 'Wallet Builders',
- summary: 'Building Wallet infrastructure on NEAR',
- accountId: 'wallet.community.devhub.near',
- telegram: 'wallet-builders',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreihmospumgywngdgtxpqftry3sykqyljr7xzvtqhlktg36vy4f4djq',
- name: 'Validators',
- summary: 'Ensuring a healthy & efficient ecosystem',
- accountId: 'validators.community.devhub.near',
- telegram: 'near_validators',
- },
- {
- icon: 'https://ipfs.near.social/ipfs/bafkreifydvg7r7e34j5chme633yjhk6lqyhbesmdcd2ninjx6dyl46qyey',
- name: 'Near Ukraine',
- summary: 'Community of Developers, Builders, Founders',
- accountId: 'nearukraine.community.devhub.near',
- telegram: 'nearprotocolua',
- },
-];
-
-const faqs = [
- {
- question: 'What is the expectation for a support resolution?',
- answer: `Upon submitting a support ticket, you can expect to receive an initial response from our team within 72 hours
- during our business hours. Our business hours are on weekdays in the PST timezone, excluding US holidays.`,
- },
- {
- question: 'Where can I find help to troubleshoot a development issue?',
- answer: (
- <>
- Social channels such as Telegram and{' '}
- Discord are a great resource to tap into for community support on development
- issues. If you can't find a solution, please submit a{' '}
- support request to our Customer Care team.
- >
- ),
- },
- {
- question: 'Where can I find funding for my project?',
- answer: (
- <>
- You can find information on grants and funding opportunities on the{' '}
- main NEAR portal .
- >
- ),
- },
- {
- question: 'How can I find out about the latest product developments?',
- answer: (
- <>
- Follow NEAR on X for our latest product announcements or subscribe to{' '}
- NEAR Week to receive their weekly newsletter on ecosystem announcements.
- >
- ),
- },
- {
- question: 'I found a bug — where can I flag this?',
- answer: (
- <>
- For any issues or concerns you've encountered, please feel free to provide us with detailed information
- through our{' '}
-
- Bug Bounty Program
-
- . Your cooperation and additional details will assist us in addressing and resolving any potential
- vulnerabilities effectively. We appreciate your proactive approach in helping us maintain the security and
- integrity of the NEAR ecosystem. If you have any further questions or need assistance, don't hesitate to
- reach out to us.
- >
- ),
- },
- {
- question: 'What happened to Near Wallet?',
- answer: (
- <>
- As we embrace a more decentralized future, wallet.near.org will be discontinued. This change invites you to
- discover a variety of new and secure wallet options within our ecosystem. Your funds are safe! Accounts exist
- on the blockchain, not in a wallet. Wallets are just an interface into using the blockchain with your account.{' '}
-
- Learn more
- {' '}
- >
- ),
- },
- {
- question: 'Question about Transfer Exchange?',
- answer:
- "For issues relating to a third-party exchange, such as Binance or Coinbase we're unable to investigate issues on external platforms like these. To address your concern effectively, we recommend contacting the customer support team of the specific exchange where you're experiencing issues. They are most equipped to assist you in resolving the matter.",
- },
- {
- question: 'How do I withdraw NEAR funds?',
- answer: (
- <>
- Your NEAR funds are managed within your chosen wallet. To best address your question we suggest you visit the
- support site for your wallet that holds your NEAR funds. For generalized steps see{' '}
- this article.
- >
- ),
- },
-];
-
-const CommunitiesPage = () => {
-
-
- const handleCommunityClick = (community) => window.open(`https://t.me/${community.telegram}`, '_blank');
-
- return (
-
-
-
- CHANNELS
-
-
-
-
-
-
- Thursdays: 11:00hs & 18:00hs GMT
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Join a Community
-
-
- {featuredCommunities.map((community, index) => (
-
handleCommunityClick(community)}
- className={styles['community-card']}
- >
-
-

-
-
{community.name}
-
{community.summary}
-
-
-
- ))}
-
-
-
-
-
-
Frequent Asked Questions
- {faqs.map((faq, index) =>
-
- )}
-
-
-
- );
-};
-
-export default CommunitiesPage;
\ No newline at end of file
diff --git a/website/src/theme/Footer/index.js b/website/src/theme/Footer/index.js
index 060799415e5..681a1a46bd3 100644
--- a/website/src/theme/Footer/index.js
+++ b/website/src/theme/Footer/index.js
@@ -56,16 +56,6 @@ function Footer() {
GitHub
-
-
-
-
-
- Discord
-
-
|All rights reserved|
-
- hello@near.org
-
- |
- Good Ware, Flaticon, and Freepick
-
+ Flaticon
+ , Good Ware, Freepick, and
+ Pixelmeetup
diff --git a/website/src/theme/NavbarItem/DropdownNavbarItem/index.js b/website/src/theme/NavbarItem/DropdownNavbarItem/index.js
index 835e1484153..5f4aa336c1a 100644
--- a/website/src/theme/NavbarItem/DropdownNavbarItem/index.js
+++ b/website/src/theme/NavbarItem/DropdownNavbarItem/index.js
@@ -22,7 +22,7 @@ const RawDropdownItem = ({ to, label, icon, description, onMouseOver, onMouseOut
>
- {!isCategory && icon && (
+ {icon && (

-
diff --git a/website/static/assets/menu/analytics.png b/website/static/assets/menu/analytics.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ad0dd58f40f63a6826b8727c2ed3188051711af
GIT binary patch
literal 18085
zcmeHv^;gu<^Y@!>0g;pvR1hVUZjewxy1NDGZdg!38WHIR>F(}s$wd&BMp`;|_jxa$
z&-Z-KdH#auhsSd~y6n9(cjnHWJ9lPYgeoh(A;PD@2LOQR-CJo@06+)-iw@voga4d*
zPG5unV7k11r;ZE$@x?U{0YBq8zSVI700J`9Uo;>&l?wbJwX2M_tD3_HR}T|s3&6v}
zgX5#Ujf
h;vC%5hoH`Cb7O-^!N!h97Qx6+5+ixUwMR|^Z-7K7hsef&z&smzQ_Ov!la
z8=u8XS_fkvI{R6#97<<_ylAE)flx2d-Z_RIx7z>Ao|%qt_LZ+
zv!h4{FGMfJela^05E4@GT;DVLLyPmr(2f@vjuZhf7yU^xo@HV!x6N=4)h7U1c%AP0VVgRJ1ZmHsM
z$+M7wYKHs0K>$TVS-zwn(8g@&I|?1!S=?z#tmFbnNLBh9{>}~+&hF%+rG8FwikL6S
zHoCs9`ZJp5PP+2`a^*g$3cp%h^dEhlEbI&n$Ch1Z-Pixr3JkByEw}7UrCzuBFb^qJ@6-ch@{e|`}aotqhn*I!VU
zu^9u5Oxbmfe{qt-6*gX>iQ#v67(|<80a|B2s%*-2nd96KQ_%uKLgrVQ`L)KCE0O5S
z%FtTZ2fgJc>q^M8y}iZ#KkO)JYo~)Qton-8XTw(S1AT6ybaIc5dC4rr+(*4s?fdUh
zqqJ-x=4*4L-Lq8x$h&4&x9PLUQ^V6X_YsDU$FkDW>_;mM@h}`4`sL1cQtybqrEZ3%
z#$%S!C9*fDxrLfW`Ad8H7Ic`D&1Jd8&&qrkCZRkcIpg@%MAFOMHgq*v&-89uUXDzkV>x}08Ru65i0`_-TI{rjY(
z3gchfjr0RL{-F2j89-l2!Fw*&s>}U74(mSHeM4y=Zv*m2SMYJznIi5z4};b@o+otx_;CysGY+co{gMLFJLaeh1NdqnIhdQgr-lO9J})OEC8V)R&t0-inNW+
zW+IWx`Y98!k$uV~0WQm?ho-1a2rdQJufq;W*t$&<;Cq|va2c-0BbpX@w}Vo%Wg6W1
z`N!-MOB+q`KUIxCYCK2QUJIS&H4$Nh_HI3J63(VoWLmo`^j$HK+~qiq^ZnUb3+}g&
zkf-}n;w3FcnaGu+8d{U&*endRKj3R)+2^Nk9=-Y9Hq;yI#X&|#N*cM-%@187429gw%nBbKXsmi2b$u=P
z8y0!-I0_}g-yVdh=f6W)K@|i3iC6)2aM3qc1MImLMb6>7LRLG|1Jp)F@vSx`hj;wX
z^Vo`xy`UDqPD5to`)|Zhw!6Op8n-5(z1MUvxh_`R*JXpw%r6$T>F3$l87>AGykA4$
zBib-C)IKeWIlG(@0{zWppOd8?S^BTfP8Q?{5(3iFH7Q~KU2a6v=9&oany+4zAZ0WF
zaf&m;Y-*MPL=$mG(!6}5@8Z6>Ey}Qtd-rWgB?G7k?ilTd5XW{L1NGO^(rFu@hUeOb
zssW0ovLM}6i)zN3U>k~emqQq|XrP~p|Ql|ca+Q18Ft+G7Py|^lZ+42~n4pM+AyXRym_ld|QOINC3kF7kARD($M>0i4*38|Dkp$N1>Aov?a>Zx!49~;@8jX13FTF;vSXlqU8wI?
zha52fSAEOCw0q+C4Kq$TW_)?sW^Aav2jsx?HJi)535f=w$F>3a^cpKDmqtchqLwO{
zgPY^HnqT|NJt^AyX9X=m%25e=+*_4U3qh0}tiPW|!&yQ*eNE2##(p<*)@MVsOvat`
zKVMNb!%vBEhxo7nRw!MH#6OyRM}&xLiZJ>(T{qGQUI2Xc)A)N?kdB28T`Y;tq*8yiC3Q5?0q#er-W=E>aa|1y@goGBjR}`_pdLM+1wrYpNXB($eb@
z?>%wtO9yEIcTEBOUv^K=(nC?=HZt|?KMNR44J_zOr7cK#up{AiKZg%pUSIDp==
zz%1->VYL&&8Q0a{h`tpsXO_DSYg;1?FkFb<*8kd2UBt@kPmQLaR(Nl(Gl8tkx$e
z&C6@1!>Xt*2{By`c!B)L-z`ylq=V=qqbgkTlsx1FP~P{6;m}m+=$|EJJM*f{JU>%~
zOs%p~Dy!pbg23oEMpxXRlqy|b*}EyNqpG+q+Uj3ojT}PULtp$e4d*C16=}X{z4J5;
z5+_D4U+sqvU#Nu#ZV^aSj%5W5vdsii;)l(j9*oh(ky^108MWT*ZXSLL327R<=2ac>
zJa&CvS6VcuiCq`R(yr-uUk4C=9@bXHWIr+fYg4
z=KLq6y2Y~lXq<%4gRM&!qYu{}`uLBcuJ1$_;{$xyz=PSil$Iuq7HwK;(hx5@paflb
zC@f*#vGj`r$#{AS{5U=OB`7&*nE~5OO}@B&e_NPauS?J@WOd&>sA=`LNv~tdrow>d
zaYwDZMfpSgyA=S-ma34MGCv(U!7aG&BOPws_??autlo1zBeF+Kkm^G-lxboD4M(D#
zt<=PR`+qD&>65sZuRdjSeLkdM{mQI$aS=y;7N2hQ+la429%hubSaZ0BnpC65x8c{>
z>%aT5qE+O0yFpuP7)O=y8QFa)KZ4jeWmrYiHPb=wG^`yd>_%%o?pWmw5w%-@TxgP$va{AO03M)K&pgU
z4PTsJW@YQ^<{(O!2<<;QN^H-n(#lC
zX!Bm(){0gLbB^5-Ge!hVXPwNB*w7
zhXCFHtSev;z*FbauI8OZyJ8G=7P+*$`S)~1F*sLpMD&)umji-mP4p`>s9>HVTSZNcuV;bwLg&5B#IrshZVESV
z?;%6Pu>+abQh3QkqbX5KE||?o@Tp+2J8(9@;eE<5u+LvIBFZyyg7R5b?{OAJ!hW#e
zrPtIqW2R3}o;VjjJ<&%w6q+e5=-ZcvDN0RX=#$^iPg!nsz4N_&%>)%}I2p9FokWWU
z-VV6Y@wBDa{PBPnjm*UQ-Gwa*f4R&PKKQCR8sJ27?3-Nj;+Vr02W;;6z1Av?kyCmq
z1m!mH{&-8ciD%2#G3l3ZlXmwsQ5bR?_Bl-1Uvn^kO8TV4b!|ClCm}!Pl;1@-?`{ru
zZY{1P=v_g=e-*a#cC|J*(}ryBV)#eY=CBxoe-U7y$+0%xp
zk3tJ~5Aw0U#mP*5>!zR2f2uf9yvkFhj{H|Wl=g$t~-QJ
zq~>qs9)Gp;wM9kqu}76=_8cB_XIrD*ElCR&DCOr}Zemrjb2jpS!0?)PW9OC`OR$8$
zKlp{zU%D0MK&iRlBPg@nz2D3}=)d=x;_aa+lL|V6^xjj>9|sG`QJk!c&TJmHeN;G@
z{{5`Ahf*7Q=K9d6XKZM>8fLWUGVgkDl5w{qwLOu=KC`3eXI~y~B6!S|h1=q0tECyjAr6cuFENHpfTlzY#m8
zNEjrnrAovoZTIOIx*IkVqs|g2Vx;@1QM>JihkSUEW}6z`nKG2O@!L@@Cx(t!_fBec
z^OHM8?3WqE!O)j0P8af9CTy^edQ(ma+I`Q`cgEo(g5BV2NsJjwz@4muh60+>dx9r$5W`@@-+^maA
zaf=K$LR}3z`U+o$G^O6ZND*?+s!prh(Os=Gd%NDYc~o#4(li-Kd5S>q$Upbp`?Ncp4>a-A
zIoD{=T5C}1#u*kT*GgpKV~}bK-+vH68pI}TOhiHx6Ba@t5|bda=MWK7D*3{r)F{^H
z*Pu~V(4B+mYcR2}=LR@rMDSXOz-J&v_Fg5U`1QPoRg9sdHBLL-Pjp!6qtrRmsd27wpqWk!cTvyC9t|;
zDg8kcNeRVz4~?4HYMZS`Ji`~2QKu+gW(U0WYMRjl`T>y_Oex*oEnZ6s{H=4@eku=r
z4-ZBaAz50f{&G;{z59*XN-gl(O4)o|$1wD8tkQiXzR1Zv5YSkN&)9M^={|APu0t
z>5c!oMoO}>p7hOG1f*guU+B-~bdWJM%oHr~73;%T>z8z0bclI_(Ebqi?jz6^X1|^9st)Drh@iKzSogaM@s518y$F
zBLD6+ZYKY7ljIS@2C~QU^r97epF;9*XMy<@xKVp~dgIu`sKakE;@g)9*u1!x**rLz3VSv4ylNcCF%FC+WsqqAFw#^@Y9ky%w9kpex
zuEThODG9@jT?pbY0frXGow{D|&vu7My9|6!$Bkp|s%Kzi$$$g%1#qR03h5t;33(!}
z@|!t=LkcvySST}0d`8SjOppwu!0|J^Cs49yKTedGZY6+uC}Zc4!?4ak0QvrUf(l$LFqv+3pV8F5O(M_{;4DQ0^jiicfCB2DX+lm=dp5ovejJn
zCB(|;dhQ)TNkX&MqdlZT-nU%7I*;9QC3|b6gDya&UAg*=i|Ycz)26!a-HqU*SKi2u
zF!HYr9A85Il3y3s)0wIbAz->JbF3{!kh40emJK&x}-?^3kn~v^a
zyJ9U)R|8zq7_l>)laii#$vAlXSyaV+hhL@PDU-;2I=~%qRHYL`pFGLz8
z6WHZZQhk2|YEsqaH!|&;S?wk)Q;ANj6d}F=WZFQJB_H||gn20B1IhOcgc9YE31x=+
zji@VLpt)Il$1JjWn~imgZ`L4Xjk8uJ{jBz#Enjx=VZ=13EuuW^zXa6ex7M03mt&1#UYN-k-@J|UK=MN&RcPP
zD-OOENJnW`V#CJ+*lr+OH$M>8M?Y_nKhZnFx6%^S24(>BAq$me+!Ft|eDsh4YLt5b
z&nAqn2i+)buQ1>pR)FnLGhv6x6v%zMAS-RbD~^LyA!U@{2EtEDYvE(A3Wsz76>GOA
zFv4ZdJc9?daj&8G^c_1Ng0C3qMfnWhg_K8K2$-9BDdL#;=^l~{8-P_qhy%I@7g=y}
zcJ(PyqwGcyurz1uPk1-T2DD7bOc$hX*m?kP(2(v-6l7px|$1vaXN4
z(PD>u-DL_X@aa)XZ+Hz7N(WeW$ylO(Bm2d$7>^s{)us3IkEx+gNK`IJG|rLKuV=vT
z-Vg!JPvL@X7UU{=c#fODuqe4k$tJ#l&afIe&WJClmZ2?Tjb!k{l=v4KuPJS3*^8*%
zr3ooG@rs8-@>FJ2ZjkwqM-`#BmN@PhD^a7f%I9HB5
zqy$Vu#R(O!1jz6re1Ex-N>4YIfUYO2N7tbp(XIvj3g^I&*uk0CBCCy?BX*7im}o`^
zZjZVU;%bHdjxb*Ib9?|p_-0IXpzB;yW<(Ccx=2c_X16!{W`7P_J;bd-M`=6y)_@r@)^DM+q{;Pp|(_;zO%04gO`AE
zRd3Xr&JX$5k0#1Kzm9B==1xX0h@^$_sxm|~AZ5uky2RCmkE4}KWz-7=O1|knV{51R
zH_b+2>oZ{|3O)((wyr&vm;Y3kr{B~EXi}knU@Pq@_wUfcG8G(^R`Fa-R|=zru>G73
zeeTm;Jk33bs9AQ&8&OZZpI&Z`T
z+2R(|DQbtUn1vfvJ0+i#hZz_l-mfRR-3ouZkljWj#}1&j{1HP3mfv!mL_A;)(i^XS
zY*|_o*1AsvBm!+q-OfvRasnWek9#nTn)^@Nb?~`Y)A6%!g6VS-5UIdc>r0eHqiCIL6suQWzmtf}1UX!CNVU
zQbk|Tn5SX)B#X&^y+|pQJY-o+SQ3)RH(mXWEnOu9q*6RLaUcb>nX6qo@r;
zGbEoMR99ix`>J@n<9~KbLCGTqn%_^Cw9Zn`SYM{h&uQXCiLUMfsi!Y>Bc>x?<_T>_
zLalKdb&dPOqZ3VVs!J!
zK9@D7N#19np${ek=jKRTNQJfcLSDjfhQ@uHo$A1SqxVJ8Ve0UX9X$Y`v8rx
zh8#AwAJP6>^0PpHR!Zk>D(n5Si=UN7BXVu^GUN(TyPI#;leZe-bOk-4k?mF$W4mZV
zp=?}pmtUP04TTp8k-^I7{^mCXs~W05PQ^B?g%kmgQyx)tW4
zU{@1!S&6
zIOKjKg{M7+1jKLYhhe@O0o`h$G1OJSb`Km@PJWepv;q^INqdufpOVm-^#uiKT%MSC
z_b^UtTj&hW*o7dv#Nei28`;*?PL`T~sir9h)%v&i?4zygi~xsK;n6^krAEA0XHN=u
zq@+UF;+|1Ts*!21P3h)KMs$v0Z1GoS_j&c%oiIC(dWfL^Gre+4bmW_JvU-X6^yS72
zULD@_B_Sg0Ffw|-Ib7q&L#16aUjc!Dh9Qz)94fh=t|gE)o8}>}bhh{(;n1RGemS9w
z1_11=pZN%9IzgOBwsL&i6l;-V?u>h8_)HbdbaNLF(KNe4HfuOMrA3ZZ}yV8VV?PUA1+bjdDo|!EFNfl<5k%Fl+Qn@o*r(zm0bQ7ho*XXnC!N
zx%2rmEuK|YgQ}#TW9BmtBU|CiNQDBc9becP3q!UdBkt{>Qr{Flr}`2PJo0ZDNk>e;
zY+-K%SZeNl$0Wis!&vR+w#{tPwR{q7}8SwZ1wB|Nb&DFiz{Qu2#pbAqiH6FaiH%
z_s4rjT`v_D;^|71cEOrZnr3z$-7Q*2#|=eAzZ?l?`t^BopUPBT@X3kj+tFm+QiAtZ
z(%P)=cR#iJQNzmVYqmRWr}*Z2?~-D%Iwh#2*r#tU6Y&07p2@s3$l%pC9m1>8%-(_(
zuyVwlt`7GQNyc)I1b~19{5n26VydKsHok%0&v{ZBDi5iwb~+h=$Nw1YcCbSWiVIm3
z_K~{w2Q0JFszG!`{AZv5xaN1EfV8=v%LSOpZ>n>_;o1DAoWm2QvQU}xgiFd?(K#F{CLzgSh=w+Ldu%cGhc;X+bRs<|2xwoO?uij*__&
zaNmYzATVIa-xEeHCaX2
zTj}P(3BB;A7P?bN4HF!xxh#@pO!}_*u+E07ay;J9+W1ERuO62YBuM^qxEspS!s3Tjayy
z?{e^lT8)U1=N9TW*Wa5Hzp-UIW6jw4g$(T{@pt}IB_61SYA#f9GwrZdxtfuuf0ReQ
zc@n&+@-T^;u~0Dce)mCv)bssDvDfHc67lwbijjx>)IRg_NR8%$MXg$t4x3tuom43v
zs4lw2z}%;CZWj3Qnb7e*wSOER1ADiwjREjiHD%Va75|mBmVoGlc(KMeD_Ycj2`Bi9@@M
znx2Q8w80aBBg+dWi}`sZZ&d}xBiA=XR#W*VEY{8UZa=$OO)r_H{%lED|M})(7n#G+
zzv)%TS=06t{_#P!*j)6^`F_aIMiMEeI%(W+f&HOWDa2CVem{lqNG(C|_e)YY^4Md#
zGe{8KJTH@S+M|5z2fyS97gfH}Ss??FVoHOnGJew%TcULYskt#4@lzCw5
zkwKkjL@;TWGoDi;p_}h+4xVbz=Ys{2;g6(rVQOe(`xHZL?-@9eqoiG4qx)j!#hJ#Wlp!8mru%C`9SXsIz5Pl@ia;Es(~A(TNsk_Pxwj
zB?UjK{1$T#%-Q`c4!mW%{Em8R_`H=(y?_+F9%jx+uZ2LFq|!u+GZ!@+AbvkLt8T!7
zR&srN$Tk0K&+VF60zN{YWTVN`L`E#m*x-c0E=>D`$r=+nr`q5K-H$h3@Ifv~Wo=Iw
zMzzHU!UA48u;3s|xdhQii`j2LaJHc;em>ti_RFJXg`AtRDWtl`Y%1@+?G(P6_|24a
zfpqGhQDAGB4qn+PeP*{~tNoQ|7ncAlgep-Th?VOmK!3}I^|F+jL)GTZxdE}sF7KT8
z9BIbC{vmcE2h5pNl0*R=67KM?KWgl;bTu-|e*KDiKlN}v
z>hg;?eabzt-DszOI8Uk2K-ZO!e*Id%lvTo-wGmV6}Z9wMIhIU!j5-xfTT$7inVU#65nsUbJ_*(WOOz^*Pna%`-b7`^*}F^KYj9-%5mrJp3i$6F{u_;@2Oh-cyq
z^++X83xjWpC>6ThDpKzM237w#w52*wT4)w0h
z5o|(z8O>iiyqCU!FY3x;4EyF?NzRnkVnG>|=EV1#=Rpto#MYbcfzzEQ&4}g3ERlzN
z)QzHNbs36tNEWv${mn7GN0Q1Z{uMWzdKzSxnH|Y$6YSSND_z2E8eVCre{@kg;w0
z{)pga1R18gz-qjO
z@m&j9KO*%^`m;sc20zGX;s^@)z~Qw!e!wkw=)jUL89dLn4>64LsaZjY=RP~xTm<{g
z{5dX`)eYrGw=7?!Q2cQl&%Mj>jO(3N4?kY3M0$jk{C<#nSq)}+o{c97BY96?CX-2)
zdDq_7_c-IO_HQvLUbuncJo)Oe%6#~(#sul{esakHP6iR%K;@?xccJ|R#DaUQoM}5L
zJA78&E$ZI=pIpz`tNi^uMpeMu@JE+VOYT
z!4y20_;`WLD@kcy{`%10O!ex?s?VUIUp}2kxxI61{%G@l9gBX#Yw5?~42Vd|OZgtM
zbEM`;?tzzpLe#?K4+QK7*wjqGZ|ga*o8XF0E
zwv-{C06rQEzBRRx9HQjb>G=Fj$}BR40sxFVOY6nhlWtcG*=k#p7II?<5F@E0COGzg
zE*rpAhnznN_dl+IeeQl@F^5b6wR{h`yl3LP_ZbXF6o`P10bVqMO@>=p@mT++-wTRt
zoU#7yj^{S_3>>EnT2|vjgyLy0{_+tw@+a5yBVdn{zgxC8UP*2IV&H8>@{59@Pl=IH
z5@cEO&GqlS4`qx3qW*l%A3Fna=&o=07kjdJnRYy#k3W;2)V+!N5m678O$`*dUJZ^f
zFo>%ALtNyqA@b+|*DIxtPtAwIGvjCaOs2NQ=iF+cR1epE#G987ZWP!25Yp2M(j+$y
zKI`i1>-VWlkPbfrd3BK0o$tiO?Sw9_lv+|K^eR>k-2DA#@$Ub`)@vLO6>o=kz<
z+!A>p9iX*fR$0SwHD~wM&;{MM8zKJg`*AS5#H-n3bzFA|sYeeg5|QR1=B!*O1RLMr
zt1*Ktj+nm^*KzzyN^q|Ue!$RN78GLDv`$R#)iZv1@?^_yndvpzTOaWwYZr=v)r|UF
zR2CixxLs#i`P6*ir}ZlqX|(Dxnduk0r3Ke%MV@5(@UgFcZSer
z1#&%u;lpufKPlr&I78cm8Wy)o$niL3lgK3o9Uu0T$MtumJ`=bD5B^p|SuXkGx8w?J
zm#bYw50PVT>^z^q8zk+K|KCd`YjdP5b6N~Y;u#aW5g~>6EEYmKF%~9{=+CDtp<*-=Y6P(R5k-0k|pHy7192#0d$h^`>Tb=?7J;w
z^xF-ng4kBBN1IFK*S{w!rRN-xW-vF=NUn5B`ET9=`}s)cgEWt&-6nb(It)O?a*~0e
zT>x9GocD&KXI=x&AZz+=usit`gu3O-l5PRnoPG7T%3^z81y06SVqn#My<%O-
z6oyYMJ^Yb}BMj>ThGHipEpz|Id7_|mtU|ImT>Dk@Yd0ErpZa?)p@m0CuN69vANsRW
zkzkX_4*m6s*@?>HEwyPg_M<4t62+T#PgNN?dNQRl?m)OD=%K*d*Z}5>B3l2J)*qlr
zv(LH2jm%lnj3f!6A|HRA*x@7BV*HtMo1eI0E4{RIjTD!D`o4GstKHkRoBQf
z+(Fq@U0gs^4?gak1@U?zXA%Oz`A$JI{yxwMU8@ri?<
zZQmJ$k3o(HEDg%B<&&Y2l9I+eMD<-r(nRgZ~y+T
zpQVLPk^Fb?Se^Usj(S>
zlov|kXutTw+|$FLIuL}8D!em4_)E4dT-gJ?-6*Vga5EU!p7Uj$02@_=hMR82g~+YN
zN;?D-srw5?1N^sR^Ow9`@(rW~$ow0m)j)b+Z?E|xe5(xD+X840o6={0WxU>)RBBs`
zPZ4^8TXChF4K|cD)*c`%hSfpr0So9~73xBUEXBO$i5)x)aJRsA`|P@#Nw_85N8>W}
zUO^CBQ!T^hy+EEawgfOUG_U_)Ky+z5x@%YBv#C!_7}i=H&b(y(?nfwup$TcSpZcvu
z&Dnmw#!_Bh(+ntLy_c4@bL!1=85_`8?FW2m2gNSinUt5+oYehK!+a9bmJZTRh(Mk$mEXS
z(E|{Oz&qmxEj{M6VWz?Z}s31
zY+eB&3Rb|j*I+}QCPzZ|9zCBR(HyFS=P+>uykpx5Pl
zPVxu)4vjNlvbuI&e4z94fAKbpO+p$(8_l%m9;}{1>I?Ll6UxMQewmg*(ht@H#*IuN;VsXEq!R7^8?BaYZU2She3@OUew@?i
zOCSMW>@~zO7$rwg;S=CCzrmKt
z2m$P$1Gd*ORSVEz})G4P~Ec9&0z-pZs=6{rmAwE;h5%Lo^;&3qiLpsk%BK
z*yfJC`0jyG9btzKhyp5{)X-Y;m=*5#!A5c4mm$yA6gvb#HT2InCy(03Q4D-^Jdlmg
z8UKs5;cQ2ydPJNlpjsv8zrs^@@e2fdb}aj@>F)@*qs|Hdg5HD*-eFpnE%?s<57Y(+
z{skP{Si%btoxf{?279M(mt3NOfA&x}Wf#1P+vCyU^OTW0g9CuRIpWW1h%sq&UWPvx
zk|=In?Y4rCl$SBUWzUk#5Fa$l0w|Uy4X=mde;|+OQN&ZglWyr
z?0INt)XerJBt)ot-Y4EX(=!@eTdjJf>Hh3Yp;p^}y4gYZh;AGYezCE+elwikdW;2<
zR_Vg4xC7WU^`k4H^w|S^BSAMf-^mEQzxRJ(YqSE4`hNX^NO4fUzt!LIj&lxKDiORi
z%U?v?NA+aVhIP$tBf6
i@l1t{wg5o)RwL`IJ+n7|J?
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
-
-
-
diff --git a/website/static/assets/menu/x.svg b/website/static/assets/menu/x.svg
deleted file mode 100644
index 751ebcf8a26..00000000000
--- a/website/static/assets/menu/x.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-