diff --git a/app/assets/images/Intersect.svg b/app/assets/images/Intersect.svg deleted file mode 100644 index f9aad6ad..00000000 --- a/app/assets/images/Intersect.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/app/assets/images/main-logo.svg b/app/assets/images/main_logo.svg similarity index 100% rename from app/assets/images/main-logo.svg rename to app/assets/images/main_logo.svg diff --git a/app/assets/images/main-logo-with-date.svg b/app/assets/images/main_logo_with_date.svg similarity index 100% rename from app/assets/images/main-logo-with-date.svg rename to app/assets/images/main_logo_with_date.svg diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 1bc0c3d6..535eeb7e 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -17,7 +17,7 @@
<%= link_to homepage_link do %> - <%= inline_svg_tag("main-logo.svg", class: "w-full") %> + <%= inline_svg_tag("main_logo.svg", class: "w-full") %> <% end %>
diff --git a/app/views/profiles/show.html.erb b/app/views/profiles/show.html.erb index c65a2db6..6cc81a63 100644 --- a/app/views/profiles/show.html.erb +++ b/app/views/profiles/show.html.erb @@ -1,46 +1,46 @@
-
-
-
- <% if @profile.image.attached? %> -
- <%= image_tag url_for(@profile.image), class: "absolute" %> -
- <% else %> -
- <%= image_tag url_for("user_avatar.svg") %> -
- <% end %> -
-
<%= @profile.name.presence || "Anonymous" %>
- <% if @profile.location.present? %> -
<%= @profile.location %>
- <% end %> -
-
- <% if @profile.bio.present? %> -

<%= @profile.bio %>

- <% end %> -
- <% if @profile.github_url.present? %> - - github - - <% end %> - <% if @profile.linkedin_url.present? %> - - linkedin - - <% end %> - <% if @profile.twitter_url.present? %> - - twitter - - <% end %> -
+
+
+
+ <% if @profile.image.attached? %> +
+ <%= image_tag url_for(@profile.image), class: "absolute" %> +
+ <% else %> +
+ <%= image_tag url_for("user_avatar.svg") %> +
+ <% end %> +
+
<%= @profile.name.presence || "Anonymous" %>
+ <% if @profile.location.present? %> +
<%= @profile.location %>
+ <% end %>
+
+ <% if @profile.bio.present? %> +

<%= @profile.bio %>

+ <% end %> +
+ <% if @profile.github_url.present? %> + + github + + <% end %> + <% if @profile.linkedin_url.present? %> + + linkedin + + <% end %> + <% if @profile.twitter_url.present? %> + + twitter + + <% end %> +
-
- <%= link_to 'Edit Profile', edit_profile_path, class: "text-red font-bold rounded-sm underline italic text-lg" %> -
+
+
+ <%= link_to 'Edit Profile', edit_profile_path, class: "text-red font-bold rounded-sm underline italic text-lg" %> +
diff --git a/app/views/sessions/new.html.erb b/app/views/sessions/new.html.erb index e98db89e..89b8d1af 100644 --- a/app/views/sessions/new.html.erb +++ b/app/views/sessions/new.html.erb @@ -1,7 +1,7 @@
<%= form_with model: @user, url: session_path, class: "flex flex-col h-full justify-between w-full max-w-screen-sm" do |form| %>
- <%= inline_svg_tag("main-logo-with-date.svg", class: "w-full mb-10") %> + <%= inline_svg_tag("main_logo_with_date.svg", class: "w-full mb-10") %>

Welcome!

Please log in to continue