Bootstrap 5 Sidebar With ASp.net MasterPage

I want to have Bootstrap 5 Sidebar fixed for all child pages of asp.net project.
Any examples? need to arrange contents as below in Master Page:

<head>
   <body>
     <asp:ContentPlaceHolder id="head" runat="server">
          <!-- Sidebar of Bootstrap goes here --!>
     </asp:ContentPlaceHolder>

     <asp:ContentPlaceHolder id="details" runat="server">
     </asp:ContentPlaceHolder>
   </body>
</head>

Please give any with working examples.