React + Bootstrap 5 - let'st build a real page

Поделиться
HTML-код
  • Опубликовано: 28 сен 2024

Комментарии • 50

  • @Mdbootstrap
    @Mdbootstrap  2 года назад +5

    I hope you liked the video. If you are already here in the comment section, I invite you to let me know what other videos would you like to see in the future. Also, share any other feedback that you have on this video!
    I don't run ads on tutorials - the only value I get is your engagement in the MDB community.
    So if you would like to show your support:
    - Encourage more people to Keep Coding ---> Send this video to one person
    - Stay tuned for new content ---> Subscribe & ring the bell
    In the description, you will find links to some useful, free resources:
    📥 Download Material Design for Bootstrap - FREE open-source UI KIT
    🎓 Learn responsive web design with the latest Bootstrap 5 (full 1.5H course)
    🎁 Join our mailing list & receive exclusive perks (free stuff that is normally behind a paywall)
    ⭐Support the creation of open-source packages with a STAR on GitHub
    👪 If you have any questions - don't hesitate to ask on our Facebook group
    Thank you for your support!

    • @michaelcole5371
      @michaelcole5371 Год назад

      I think I can work out things from here, however if you are willing, I would love to see a remake of the bootstrap portfolio site in React.
      Thank you for the wonderful content, I've just come off a full-stack coding bootcamp that I only realised at the end assumed I was already comfortable with front end work and your tutorials are helping me to actually make my work functional enough so I'll be able to apply for work soon. You're saving me weeks of work and I can't thank you enough.

    • @gonefishing7106
      @gonefishing7106 Год назад

      Great video as always. Your pace of explanation is great. I haven't used MDB for publishing before, but it looks so simple, I will give it a try. Looking forward to more of your future content!

  • @robmiller8753
    @robmiller8753 10 месяцев назад

    This just clarified so many little details that have impeded my ability to utilize bootstrap effectively in react applications. Thank you SO MUCH

    • @Mdbootstrap
      @Mdbootstrap  10 месяцев назад

      Happy to help :) Keep Coding, mate!

  • @unknownguy2905
    @unknownguy2905 Год назад

    finally someone who is fast and isnt talking for 30 minutes

  • @momoduoladapo4097
    @momoduoladapo4097 Год назад +1

    Best of them all. You built a website in realtime just like in about 12 minutes. Thanks for the lecture. Am watching this over again

  • @NikkiJ505
    @NikkiJ505 Год назад

    thank you, just need a video for react and react-router to build a page, this was fantastic!

  • @brentbermejo1749
    @brentbermejo1749 Год назад +2

    Thank you for this tutorial ! Such a huge help for me.

  • @sonictooth6969
    @sonictooth6969 Год назад

    dzięki ta ten Tutorial :) jestem właśnie w trakcie pisania czegoś do swojego pierwszego portfolio :)

  • @wadanemacho
    @wadanemacho Год назад +1

    hi, one questin, why you can use class instead of className in react? thanks

    • @pasinduranawakage
      @pasinduranawakage 7 месяцев назад

      because JSX lets you use HTML tags inside React. There is already a keyword called 'class' in HTML. That's why it uses className instead.

  • @carlosesierra
    @carlosesierra Год назад +1

    nwbi here: where can I find the html generated? (which folder?) thanks!

  • @hehehehehehehe3224
    @hehehehehehehe3224 Год назад

    that's amazing but my question is how can i know the class name like you give

  • @slipstream01
    @slipstream01 Год назад

    You make it look so easy 😉

  • @moatazabdelraouf4059
    @moatazabdelraouf4059 Год назад +1

    Bootstrap is acting very strange for me. Whenever I try to add the Button component, for some reason, I end up with a completely BLANK page. Like, even when I inspect it, I cant find the react template HTML code (its disappears somehow). Does Bootstrap do the same thing for anyone else??

  • @stefannolte3928
    @stefannolte3928 Год назад

    The video is good, but it could be zoomed in a bit more, especially with the content that is in the browser. It's hard to read on a laptop.
    When something is typed into the command line, it shouldn't be all the way at the bottom of the screen either. When the video is paused, everything is obscured by the bar.

  • @user-cc8kb
    @user-cc8kb 2 года назад

    Huge thank you! I will build an awesome bootstrap app now :)

  • @fernandoflores3728
    @fernandoflores3728 2 года назад

    Thanks a lot, your explanation was really good!

  • @ben3038
    @ben3038 2 года назад

    This was excellent, thank you.

  • @sweetshoez
    @sweetshoez Год назад

    Helpful thank you

  • @warriorsitewarriorsite4312
    @warriorsitewarriorsite4312 2 года назад

    Cześć,
    Będzie może jakiś tutorial odnośnie layoutu przy większych rozdzielczościach 2, 4, 8k? chodzi mianowicie w jaki sposób powiększyć wielkość tekstu, ikon czy search bara. o ile bootstrap jest fajny przy rozdzielczości pc - tel to powyżej jest tragedia próbujesz pisać pod 4k to trzeba pisać pod kilka rozdzielczości bo zawsze sie coś przemieści.

    • @Mdbootstrap
      @Mdbootstrap  2 года назад

      Hej, sam Bootstrap wprowadził w wersji 5 rozmiar xxl dla szerokosci większej niż1400px, dodatkowo odpalili poboczny projekt RFS: github.com/twbs/rfs/tree/v9.0.3 i tu można takie rzeczy robić. Pozwala to uzależnić rozmiar tekstu, marginów i paddingów itp od rozdzielczości przeglądarki przez stosowanie funkcji calc:
      .title {
      font-size: calc(1.525rem + 3.3vw);
      }

  • @wadanemacho
    @wadanemacho Год назад +2

    hey chatGPT thinks you may be doing the wrong way....
    In the video you provided, the instructor used class instead of className when adding Bootstrap classes to his React components. Although it is technically valid HTML and JSX syntax, it is considered bad practice because class is a reserved keyword in JavaScript and could cause problems when working with other libraries or code.
    In general, it is always better to follow the conventions and guidelines of the React community, which recommends using className instead of class to add classes to your components. This will ensure that your code is consistent, easier to read, and less likely to cause issues in the future.

    • @tomasburian6550
      @tomasburian6550 11 месяцев назад

      Exactly, I used className everywhere.

  •  2 года назад +2

    IMHO better use react + bootstrap 5 pure without react-bootstrap otherwise you loose the mobile and other benefits of pure bootstrap 5. Since Bootstrap 5 no longer depends on jQuery.

    • @Mdbootstrap
      @Mdbootstrap  2 года назад

      What do you mean by "loose the mobile and other benefits of pure bootstrap 5" ? How would you loose it using react-bootstrap?

    • @Isaac-eh6uu
      @Isaac-eh6uu 2 года назад

      You are going to have to explain that one.

    • @nguyen-van-quang
      @nguyen-van-quang 2 года назад

      👍 react + bootstrap pure is too enough for me. I don't want to make my frontend too complicated

  • @hsiTree
    @hsiTree Год назад

    Gem 💎

  • @engcre
    @engcre 2 года назад

    Thankssss

    • @joshfletcher2364
      @joshfletcher2364 Год назад

      This is perfect! Straight to the point. You really take the stress out of it! Thanks! 🙏

  • @DineshKumar-kc6oj
    @DineshKumar-kc6oj 2 года назад

    👌

  • @abiaemejohnson9824
    @abiaemejohnson9824 8 месяцев назад +1

    Thanks. That's cool

    • @Mdbootstrap
      @Mdbootstrap  8 месяцев назад

      Happy to help, Keep Coding :)

  • @akashrizvi3072
    @akashrizvi3072 9 месяцев назад +1

    Simple and great,
    The most I like is the free and simple web hosting method.

  • @alexcwarren
    @alexcwarren 2 года назад +1

    If you wanted to change the background color and the text color of the navbar, for example, how would you go about doing that with the Navbar react-bootstrap component?

  • @Localbuka-dev01
    @Localbuka-dev01 9 месяцев назад

    boss, the image library was from bootstrap, how can I use images from my local PC?

    • @Mdbootstrap
      @Mdbootstrap  9 месяцев назад

      Try this out:
      1. Place the Image in Your Project Directory: First, you need to place the image file into the public directory of your React project. This could be directly in the public folder or within a subdirectory like public/images.
      2. Importing the Image in React: In your React component, you can import the image at the top of your file. For example;
      javascript code: import MyImage from './path-to-your-image.jpg';
      3. Using the Image in Your JSX: Once the image is imported, you can use it in your JSX like any other variable. For instance;
      jsx code:
      4. Styling with Bootstrap: To style this image using Bootstrap, you can simply add Bootstrap classes to the img tag. For example, to make the image responsive, you can use; jsx code:
      5. Alternative Approach - Directly in JSX: Instead of importing the image, you can also reference it directly in the JSX by providing the relative path from the public directory. For example; jsx code:
      Just remember to ensure that the path you use matches the location of your image in the project structure. Also, if your image is large, consider optimizing it to reduce the load time of your web page.
      I hope that helps, Keep Coding :)

  • @srfahim23
    @srfahim23 4 месяца назад

    got well 🎉🎉

  • @imperator_lubelski
    @imperator_lubelski 2 года назад

    prosiłbym o większy tekst, by móc oglądać w niższych rozdzielczościach

    • @DawidAdach
      @DawidAdach 2 года назад

      Nagranie jest w 4k więc można zwiększyć rozdzielczośc filmu i powinno się ładnie dać powiększyć

    • @imperator_lubelski
      @imperator_lubelski 2 года назад

      @@DawidAdach ale ja nie mam internetu takiego

  • @scottgeithman8648
    @scottgeithman8648 2 года назад

    Why would you develop one way and then change the code for production? Develop with proper standards seems more logical ...