I am not happy with the visual appeal of this UI design.
Can you suggest any changes that I can make. So it look more cool
13 Replies
mobile version looks grate but i am not happy with desktop version.
Quickest improvement would be to center (vertically) the text
set a max width for the navbar
Some minor improvements
1. Text is really long. Try breaking it into more lines. eg: break it from the comma in the tagline.
2. The contrast between text and background is a bit low. Maybe add a dark gradient to the image. Or blur the background a bit.
3. The purple text doesn't really match the background.
Good logo
<div className="home-container">
<h1>You got the travel plans, we got the travel vans.</h1>
<p>
Add adventure to your life by joining the #vanlife movement. Rent the
perfect van to make your perfect road trip.
</p>
<Link className="link-button" to="vans">
Find your van
</Link>
</div>
this is the Home page React code
css for the Home page
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
is there any other way to center that without using display flex
Now it looks lot better than eariler version
why we have to set max-width for navabar
bc it will look bad on extra wide screens, and also visually it looks bad in the current view you have. Also standard practice in web design afaik
I'll fix this contrast between text and background. but I am not getting what you mean by breaking text to the next line
set a max width for the text container as well
ohh extra wide I forgot about it. thanks
I will set the maximum width for all containers.
Max width on text container will take care of it as recommended by shane
okey got it
thanks 💜