Skip to content

Commit

Permalink
Update Navbar and Footer to use image logos
Browse files Browse the repository at this point in the history
  • Loading branch information
cengelbart39 committed Nov 8, 2024
1 parent 0d18f17 commit c8dd0d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
5 changes: 1 addition & 4 deletions src/_components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,10 @@ export default function Footer() {
<div className="mb-6 md:mb-0">
<a href={blueprint_url} className="flex items-center">
<img
src="/assets/logos/logo_negative.png"
src="/assets/logos/logo_banner_negative.png"
className="h-8 mr-2"
alt="blueprint Logo"
/>
<span className="self-center text-3xl font-semibold font-poppins whitespace-nowrap text-white">
blueprint
</span>
</a>
<h3 className="my-5 text-white font-medium font-poppins">
Technology for Social Good
Expand Down
13 changes: 3 additions & 10 deletions src/_components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,11 @@ const navigationLinks = [
];

export default function NavigationBar() {
const logo = "/assets/logos/logo_negative.png";
const logo = "/assets/logos/logo_banner_negative.png";
return (
<nav className="relative flex items-center justify-between lg:p-6 p-10 bg-primary z-50">
<a href="/" className="flex items-center text-white">
<img
src={logo}
alt="Blueprint Logo"
className="mr-2 lg:w-10 lg:h-10 w-16 h-16"
/>
<span className="lg:text-3xl text-5xl font-poppins font-semibold hover:font-bold">
blueprint
</span>
<a href="/" className="flex items-center">
<img src={logo} alt="Blueprint Logo" className="mr-2 lg:h-10 h-16" />
</a>
{/* Desktop Navigation Menu - Visible only on large screens */}
<div className="hidden lg:flex space-x-6">
Expand Down

0 comments on commit c8dd0d4

Please sign in to comment.