DEV Community

jdowns525
jdowns525

Posted on

Updated the look of my Ratings app

My first full stack project was deployed in april and I thought i would've just leave it as is but I've found myself periodically coming back to it and improving it in any way I can.

My latest changes have consisted in making sure that every page of this web app was consistent in its visuals and user experience.

So far, I am very happy with what I have and seeing how much it changes every month.

Image description
Image description

Top comments (1)

Collapse
 
heratyian profile image
Ian

nice work! might want to add making some of your navbar links conditional. maybe something like this.

<% if current_user.present? %>
  <a href="/users/edit">Edit Profile</a>
<% end %>
Enter fullscreen mode Exit fullscreen mode

Doesn't make sense to have edit, sign up, and sign in at the same time.