How to open Lightning Component from Commuity Builder in Salesforce?

Salesforce

lightning tree grid showing Account and its related Contacts and Opportunity in LWC in Salesforce

Sample Code: HTML: <template>     <div class="slds-p-around_medium lgc-bg">         <div class="slds-m-bottom_small">             <lightning-button label="Expand All"                               onclick={clickToExpandAll}>             </lightning-button>             <lightning-button label="Collapse All"                               onclick={clickToCollapseAll}>             </lightning-button>         </div>        <lightning-tree-grid ....

Salesforce

Pass values from one Visualforce Page to Another Visualforce page in Salesforce

Visualforce Page:<apex:page controller="AccountListController">        <apex:form>            <apex:pageBlock id="pg">                        <apex:pageBlockSection >                <apex:panelGrid columns="3" cellpadding="3" cellspacing="3">                    <apex:outputLabel value="Account Name: "/>                    <apex:inputText value="{!acctName}"/>                    <apex:commandButton value="Go" action="{!searchAcct}"/>                </apex:panelGrid>             </apex:pageBlockSection>                    <apex:pageBlockSection rendered="{!listAcct.Size ....