Skip to content

Commit c3e3a88

Browse files
Feature/update branding (#8)
* setup basic fly deploy * trigger deploy and push to stage * align naming * change logos * add new logo * some updates * some updates * minor update --------- Co-authored-by: TheDumbTechGuy <sfroelich01@gmail.com>
1 parent 379673c commit c3e3a88

36 files changed

Lines changed: 84 additions & 96 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Hack! with achieve by Petra
1+
# UNICEF StartUp Lab Hack
22

44.4 KB
Loading

app/mailers/application_mailer.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
class ApplicationMailer < ActionMailer::Base
2-
default from: "Hack! with achieve by Petra <hackathon@theachieveapp.com>"
2+
default from: "UNICEF StartUp Lab Hack <hack25@devcongress.io>"
33
layout "mailer"
44

55
def self.event_date
6-
"Friday, March 28, 2025"
6+
"Thursday, November 12, 2025"
77
end
88
end

app/mailers/invitation_mailer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class InvitationMailer < ApplicationMailer
44
def send_invite
55
@url = confirm_invitation_url(token: @invitation.token)
66
mail to: @invitation.email,
7-
subject: "🚀 You're Invited: Join #{@team.name} for Hack! with achieve by Petra 🚀"
7+
subject: "🚀 You're Invited: Join #{@team.name} for UNICEF StartUp Lab Hack 🚀"
88
end
99

1010
private

app/mailers/team_mailer.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ class TeamMailer < ApplicationMailer
33

44
def qualified_email
55
mail to: @recipient,
6-
subject: "Congratulations! 🎉 #{@team.name} Is Qualified for Hack! with achieve by Petra"
6+
subject: "Congratulations! 🎉 #{@team.name} Is Qualified for UNICEF StartUp Lab Hack"
77
end
88

99
def late_qualified_email
1010
mail to: @recipient,
11-
subject: "Update on Your Team's Qualification Status for Hack! with achieve by Petra"
11+
subject: "Update on Your Team's Qualification Status for UNICEF StartUp Lab Hack"
1212
end
1313

1414
private

app/mailers/team_membership_mailer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class TeamMembershipMailer < ApplicationMailer
33

44
def welcome_email
55
mail to: email_address_with_name(@hacker.email, @hacker.profile.name),
6-
subject: "🌟 Welcome to Hack! with achieve by Petra, #{@hacker.profile.name}! 🚀"
6+
subject: "🌟 Welcome to UNICEF StartUp Lab Hack, #{@hacker.profile.name}! 🚀"
77
end
88

99
private

app/views/homepage/about.html.erb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<%= content_for :title, "About Us | Hack! with achieve by Petra" %>
1+
<%= content_for :title, "About Us | UNICEF StartUp Lab Hack" %>
22

33
<div class="mx-auto max-w-3xl px-4 py-8 sm:py-16">
44
<!-- Event Details Grid -->
@@ -28,17 +28,17 @@
2828
'BEGIN:VEVENT',
2929
'DTSTART:20250314T190000',
3030
'DTEND:20250316T140000',
31-
'SUMMARY:Hack! with achieve by Petra',
31+
'SUMMARY:UNICEF StartUp Lab Hack',
3232
'DESCRIPTION:36-hour hackathon focused on Imagining the Future of Finance with AI. Prize pool of GHS 30,000. Bring your innovative ideas and join us for an exciting weekend of coding, learning, and networking!',
33-
'LOCATION:Academic City Campus - https://maps.app.goo.gl/ZHyiNzri8G68ryL97',
33+
'LOCATION: [TBD]',
3434
'END:VEVENT',
3535
'END:VCALENDAR'
3636
].join('\n');
3737

3838
const blob = new Blob([icsContent], { type: 'text/calendar;charset=utf-8' });
3939
const link = document.createElement('a');
4040
link.href = window.URL.createObjectURL(blob);
41-
link.download = 'hack-with-achieve.ics';
41+
link.download = 'unicef-startup-lab-hack.ics';
4242
document.body.appendChild(link);
4343
link.click();
4444
document.body.removeChild(link);
@@ -123,7 +123,7 @@
123123
<h2 class="text-2xl font-bold text-gray-900">What to Expect</h2>
124124
<div class="mt-6 space-y-6 text-gray-600">
125125
<p>
126-
Join us for an intensive 36-hour hackathon where you'll collaborate with fellow innovators to create cutting-edge solutions in fintech. Whether you're a seasoned developer or just starting your coding journey, Hack! with achieve by Petra provides the perfect platform to showcase your skills and learn from industry experts.
126+
Join us for an intensive 36-hour hackathon where you'll collaborate with fellow innovators to create cutting-edge solutions in fintech. Whether you're a seasoned developer or just starting your coding journey, UNICEF StartUp Lab Hack provides the perfect platform to showcase your skills and learn from industry experts.
127127
</p>
128128
<p>
129129
Throughout the event, you'll have access to mentors, technical workshops, and API integration support. Work alongside like-minded individuals, receive guidance from experienced professionals, and compete for exciting prizes worth GHS 30,000 in total!

app/views/homepage/contact.html.erb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<%= content_for :title, "Contact Us | Hack! with achieve by Petra" %>
1+
<%= content_for :title, "Contact Us | UNICEF StartUp Lab Hack" %>
22

33
<div class="mx-auto max-w-3xl px-4 py-8 sm:py-16">
44
<div class="bg-white rounded-2xl shadow-md border border-primary-100/50 px-6 py-12 sm:px-12">
@@ -14,28 +14,28 @@
1414
<div class="space-y-6">
1515
<h2 class="text-xl font-semibold text-gray-900">Connect With Us</h2>
1616
<div class="flex flex-col space-y-4 sm:flex-row sm:space-x-4 sm:space-y-0 sm:items-center">
17-
<a href="https://x.com/achievebypetra_" target="_blank" rel="noopener noreferrer"
17+
<a href="https://x.com/devcongress" target="_blank" rel="noopener noreferrer"
1818
class="flex items-center space-x-3 text-gray-600 hover:text-primary-600 transition-colors duration-200">
1919
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
2020
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
2121
</svg>
22-
<span>@theachieveapp</span>
22+
<span>@DevCongress</span>
2323
</a>
2424

25-
<a href="https://facebook.com/theachieveapp" target="_blank" rel="noopener noreferrer"
25+
<a href="https://facebook.com/devcongress" target="_blank" rel="noopener noreferrer"
2626
class="flex items-center space-x-3 text-gray-600 hover:text-primary-600 transition-colors duration-200">
2727
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
2828
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
2929
</svg>
30-
<span>theachieveapp</span>
30+
<span>DevCongress</span>
3131
</a>
3232

33-
<a href="https://www.instagram.com/theachieveapp/" target="_blank" rel="noopener noreferrer"
33+
<a href="https://www.instagram.com/devcongress/" target="_blank" rel="noopener noreferrer"
3434
class="flex items-center space-x-3 text-gray-600 hover:text-primary-600 transition-colors duration-200">
3535
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
3636
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/>
3737
</svg>
38-
<span>@theachieveapp</span>
38+
<span>@DevCongress</span>
3939
</a>
4040
</div>
4141
</div>
@@ -73,39 +73,39 @@
7373
<!-- Emergency Contact -->
7474
<div class="mt-16 bg-primary-50 rounded-xl p-6">
7575
<h2 class="text-lg font-semibold text-primary-900">During the Event</h2>
76-
<p class="mt-2 text-primary-700">Need immediate assistance during the hackathon? Our event coordinators will be available 24/7. Look for staff members in Achieve by Petra t-shirts.</p>
76+
<p class="mt-2 text-primary-700">Need immediate assistance during the hackathon? Our event coordinators will be available 24/7. Look for staff members in UNICEF Startup Lab t-shirts.</p>
7777
</div>
7878

7979
<!-- CTA -->
8080
<div class="mt-12 text-center">
8181
<p class="text-gray-600">Still have questions? Don't hesitate to reach out!</p>
8282
<div class="mt-6 ">
8383
<div class="flex flex-col space-y-4 sm:flex-row sm:space-x-4 sm:space-y-0 sm:items-center items-center justify-center">
84-
<a href="https://x.com/achievebypetra_" target="_blank" rel="noopener noreferrer"
84+
<a href="https://x.com/DevCongress" target="_blank" rel="noopener noreferrer"
8585
class="flex items-center space-x-3 text-gray-600 hover:text-primary-600 transition-colors duration-200">
8686
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
8787
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
8888
</svg>
89-
<span>@theachieveapp</span>
89+
<span>@DevCongress</span>
9090
</a>
9191

92-
<a href="https://facebook.com/theachieveapp" target="_blank" rel="noopener noreferrer"
92+
<a href="https://facebook.com/DevCongress" target="_blank" rel="noopener noreferrer"
9393
class="flex items-center space-x-3 text-gray-600 hover:text-primary-600 transition-colors duration-200">
9494
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
9595
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
9696
</svg>
97-
<span>theachieveapp</span>
97+
<span>DevCongress</span>
9898
</a>
9999

100-
<a href="https://www.instagram.com/theachieveapp/" target="_blank" rel="noopener noreferrer"
100+
<a href="https://www.instagram.com/devcongress/" target="_blank" rel="noopener noreferrer"
101101
class="flex items-center space-x-3 text-gray-600 hover:text-primary-600 transition-colors duration-200">
102102
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
103103
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/>
104104
</svg>
105-
<span>@theachieveapp</span>
105+
<span>@DevCongress</span>
106106
</a>
107107
</div>
108108
</div>
109109
</div>
110110
</div>
111-
</div>
111+
</div>

app/views/homepage/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
>
2626
<div class="text-center">
2727
<!-- Header -->
28-
<%= image_tag "Logo-Main.svg", class: "w-64 inline-block", alt: "Event Logo" %>
28+
<%= image_tag "neural-network.png", class: "w-64 inline-block", alt: "Event Logo" %>
2929
<!-- Theme -->
3030
<div class="mt-6">
3131
<span

app/views/invitation_mailer/send_invite.text.erb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Hi <%= @invitation.email %>,
22

3-
<%= @owner.profile.name %> has handpicked you to join <%= @team.name %> for Hack! with achieve by Petra! 🎉
3+
<%= @owner.profile.name %> has handpicked you to join <%= @team.name %> for UNICEF StartUp Lab Hack! 🎉
44
This is your exclusive chance to collaborate, innovate, and showcase your skills alongside some of the brightest minds in tech.
55
Here's What to Do Next:
66

@@ -15,10 +15,10 @@ Why Join?
1515
✨ Network with industry experts: Learn from mentors, judges, and fellow innovators.
1616
✨ Compete for exciting prizes: Win cash prizes, bragging rights, and more!
1717

18-
Let's make Hack! with achieve by Petra an unforgettable experience! 🚀
18+
Let's make UNICEF StartUp Lab Hack an unforgettable experience! 🚀
1919

2020
Best regards,
21-
The Hack! with achieve by Petra Team
21+
The UNICEF StartUp Lab Hack Team
2222

2323
-----------------------------------------------------------
2424
Important:

0 commit comments

Comments
 (0)