function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SFDC@ErrorSFDC@Error 

Custom page using bootstrap

Hi All
How can I develop a custom page like bellow page?  Can anybody share some sample code.
User-added image
Amit Chaudhary 8Amit Chaudhary 8
Try lighting Component That will help you.
https://developer.salesforce.com/docs/component-library/overview/components

Let us know if this will help you
 
Ajay K DubediAjay K Dubedi
Hi,
You can use lightning component for the above page. The lightning component provides
Buttons, images etc that will help you to design the page.
If you want to use Bootstrap you can use as well. you just have to include bootstrap
Libraries into your lightning Page.
I suggest you to use static resource for the libraries.
Try the code to load the library into the Lightning page-
<ltng:require styles="{! $Resource.boostrap337 + '/bootstrap-3.3.7-dist/css/bootstrap.min.css'}"
      scripts="{!join(',',
        $Resource.jquery224 ,
        $Resource.boostrap337 + '/bootstrap-3.3.7-dist/js/bootstrap.min.js')
      }" afterScriptsLoaded="{!c.scriptsLoaded}"/>     
Try the link for the bootstrap components-
https://getbootstrap.com/

I hope you find some basic idea for your page. If it does, please mark as Best Answer to help others too.
Thanks,
Ajay Dubedi