Bootstrap 5 template for personal site?

Good morning!

I'd like to start working on a personal website. However, the front-end isn't exactly my strong suit.

I would like to implement the site in the backend with the PHP framework Laravel, i.e. Laravel 10 🙂

Does anyone have any recommendations for me? Thanks!

Otherwise I'll have to do it myself, for better or for worse :p

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
4 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
regex9
1 year ago

On the one hand, there are several websites where you can find prefabricated HTML templates for portfolios, etc.

Examples:

You can find more such sites through a search engine with keywords like html template. You only need to change this to Blade Templates so that you can dynamically insert your specific content.

Alternatively, you could use frameworks that define a complete design concept (e.g. Ant, MaterialorFlat remix) or prefabricated components (e.g. Bootstrap, UIKit).

 Mirko Marek
1 year ago

Yes, I would advise you to use Bootstrap and this for the following reasons:

You will create your page alone without a team and thus have the advantage of using the same CSS classes. Bootstrap makes the performance worse than a higher traffic. Unfortunately, you don’t have a time advantage, because you need to nest many div elements on your side and thus tap a lot more code. Bootstrap is known to produce a lot of overhead.

My personal recommendation is to use pure CSS code. You save time and nerve.

xxxbernxxx
1 year ago
Reply to  Mirko Marek

Pure CSS code to write yourself instead of using tailwind or bootstrap is also more of the dumbest answers you can give

 Mirko Marek
1 year ago
Reply to  xxxbernxxx

If you have no idea, you should leave any comments. CSS frameworks bring many disadvantages to bear. Only the many nested div elements lead to overload, which can affect performance and traffic. Pure CSS can be used better for such clear projects. It’s about Best Pratice. In addition, the overpropotional use of classes in the individual elements shifts more or less the CSS code to CSS. You can also reuse your own CSS class for an HTML element that you would write yourself, as with Bootstrap, for several elements, but can put together in your own classes everything that is not going on in Bootstrap. This saves time and nerves. You are welcome to know why my answer should be the dumbest.