Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions builder-frontend/src/assets/logos/bdt-logo-small-mono-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions builder-frontend/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useAuth } from "../context/AuthContext";
import { useLocation, useNavigate } from "@solidjs/router";

import bdtLogo from "../assets/logos/bdt-logo-large-mono-light.svg";
import bdtLogo from "../assets/logos/bdt-logo-small-mono-light.svg";
import { Show } from "solid-js";

const HeaderButton = ({
Expand Down Expand Up @@ -37,12 +37,12 @@ export default function Header() {
};

return (
<header class="bg-gray-200 min-h-24 h-24 px-4 flex items-center justify-between border-b-2 border-gray-300">
<header class="bg-gray-200 min-h-12 h-12 px-4 flex items-center justify-between border-b-2 border-gray-300">
<div class="flex items-center space-x-6">
<img
src={bdtLogo}
alt="BDT logo"
class="w-36 cursor-pointer"
class="w-18 cursor-pointer"
onClick={() => navigate("/")}
/>
</div>
Expand Down
4 changes: 1 addition & 3 deletions website/src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<footer class="py-12 flex flex-col items-center gap-3 bg-bdt-green">
<a class="underline w-fit" href=`${import.meta.env.BASE_URL}/#top`
>Return to top</a
>
<a class="underline w-fit" href="/#top">Return to top</a>
<p class="text-3xl! font-serif mt-2">Benefit Decision Toolkit</p>
<p>
<a class="underline" href="https://codeforphilly.org/" target="_blank"
Expand Down
4 changes: 2 additions & 2 deletions website/src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import { Content } from "../assets/text/Hero.md";
>
<Content />
</div>
<a href=`${import.meta.env.BASE_URL}/#projects`>
<a href="/#projects" class="w-fit block">
<div
class="mt-6 w-fit px-6 py-2 pt-3.5 bg-white border-2 border-bdt-blue rounded-full text-sky-700 font-serif text-xl font-bold"
class="mt-6 px-6 py-2 pt-3.5 bg-white border-2 border-bdt-blue rounded-full text-sky-700 font-serif text-xl font-bold"
>
<span>Learn more</span>
</div>
Expand Down
Loading