Create a logo
All checks were successful
Ruby CI / test (pull_request) Successful in 20s

This commit is contained in:
Andrew Tomaka 2025-06-11 22:08:42 -04:00
parent 8bba78e024
commit cd76bca72c
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
2 changed files with 22 additions and 27 deletions

View file

@ -1,35 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg width="200" height="48" viewBox="0 0 200 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="200" height="48" viewBox="0 0 200 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- Calculator/Budget icon --> <!-- Piggy bank icon -->
<g> <g>
<!-- Calculator body --> <!-- Piggy body -->
<rect x="8" y="8" width="32" height="32" rx="4" fill="#10B981" stroke="#047857" stroke-width="1.5"/> <ellipse cx="24" cy="26" rx="14" ry="10" fill="#F472B6" stroke="#DB2777" stroke-width="1.5"/>
<!-- Piggy snout -->
<!-- Screen --> <ellipse cx="34" cy="26" rx="4" ry="3" fill="#F9A8D4" stroke="#DB2777" stroke-width="1"/>
<rect x="12" y="12" width="24" height="8" rx="2" fill="#D1FAE5"/> <!-- Nostrils -->
<circle cx="33" cy="26" r="0.5" fill="#DB2777"/>
<!-- Dollar sign in screen --> <circle cx="35" cy="26" r="0.5" fill="#DB2777"/>
<text x="24" y="18" font-family="Arial, sans-serif" font-size="8" fill="#047857" text-anchor="middle" font-weight="bold">$</text> <!-- Eye -->
<circle cx="28" cy="22" r="1.5" fill="#DB2777"/>
<!-- Calculator buttons --> <!-- Ear -->
<rect x="12" y="24" width="5" height="3" rx="0.5" fill="#047857"/> <path d="M20 18 L18 16 L20 20" fill="#F472B6" stroke="#DB2777" stroke-width="1" stroke-linejoin="round"/>
<rect x="19.5" y="24" width="5" height="3" rx="0.5" fill="#047857"/> <!-- Legs -->
<rect x="27" y="24" width="5" height="3" rx="0.5" fill="#047857"/> <rect x="16" y="32" width="3" height="4" rx="1" fill="#F472B6" stroke="#DB2777" stroke-width="1"/>
<rect x="29" y="32" width="3" height="4" rx="1" fill="#F472B6" stroke="#DB2777" stroke-width="1"/>
<rect x="12" y="29" width="5" height="3" rx="0.5" fill="#047857"/> <!-- Coin slot -->
<rect x="19.5" y="29" width="5" height="3" rx="0.5" fill="#047857"/> <rect x="22" y="16" width="8" height="1.5" rx="0.5" fill="#DB2777"/>
<rect x="27" y="29" width="5" height="3" rx="0.5" fill="#047857"/>
<rect x="12" y="34" width="5" height="3" rx="0.5" fill="#047857"/>
<rect x="19.5" y="34" width="5" height="3" rx="0.5" fill="#047857"/>
<rect x="27" y="34" width="5" height="3" rx="0.5" fill="#047857"/>
</g> </g>
<!-- Text --> <!-- Text -->
<text x="48" y="28" font-family="Arial, Helvetica, sans-serif" font-size="24" fill="#ffffff" font-weight="600" dominant-baseline="middle"> <text x="48" y="28" font-family="Arial, Helvetica, sans-serif" font-size="22" fill="#ffffff" font-weight="600" dominant-baseline="middle">
Budget Family
</text> </text>
<text x="130" y="28" font-family="Arial, Helvetica, sans-serif" font-size="24" fill="#10B981" font-weight="600" dominant-baseline="middle"> <text x="118" y="28" font-family="Arial, Helvetica, sans-serif" font-size="22" fill="#F472B6" font-weight="600" dominant-baseline="middle">
Track Funds
</text> </text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -15,7 +15,7 @@
<nav class="w-100 py-4 px-6 bg-gray-900 flex items-center justify-between flex-wrap"> <nav class="w-100 py-4 px-6 bg-gray-900 flex items-center justify-between flex-wrap">
<div class="flex items-center"> <div class="flex items-center">
<%= link_to root_path, class: "mr-8" do %> <%= link_to root_path, class: "mr-8" do %>
<%= image_tag "logo.svg", alt: "Budget Track Logo", class: "h-8" %> <%= image_tag "logo.svg", alt: "Family Funds Logo", class: "h-8" %>
<% end %> <% end %>
<ul class="flex"> <ul class="flex">
<% if Current.user.registered? %> <% if Current.user.registered? %>