Skip to content

Commit 20c49a6

Browse files
committed
adjust spacing and colors, use map for items in process section
1 parent bb7d857 commit 20c49a6

File tree

10 files changed

+50
-11
lines changed

10 files changed

+50
-11
lines changed
19.9 KB
Loading
Lines changed: 23 additions & 0 deletions
Loading

website/src/components/Contact.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
66
<section id="contact">
77
<div class="max-w-[130ch] mx-auto">
88
<div class="flex flex-row">
9-
<div class="w-1/2 p-6">
9+
<div class="sm:w-2/5 p-6 py-12">
1010
<div class="prose">
1111
<Content />
1212
</div>
@@ -48,7 +48,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
4848
</form>
4949
</div>
5050
<div
51-
class="w-1/2 bg-[url(../assets/photos/man-in-office.png)] bg-cover hidden sm:block"
51+
class="sm:w-3/5 bg-[url(../assets/photos/man-in-office.png)] bg-cover hidden sm:block"
5252
>
5353
<img class="h-full relative right-0.5" src={wedge.src} alt="" />
5454
</div>

website/src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<footer class="py-6 text-center flex flex-col gap-3 bg-green-300">
1+
<footer class="py-12 text-center flex flex-col gap-3 bg-green-300">
22
<a href=`${import.meta.env.BASE_URL}/#top`>Return to top</a>
33
<p>Benefit Decision Toolkit</p>
44
<p>With ❤️ from Philly</p>

website/src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import logo from "../assets/logos/bdt-logo-large-mono-dark.svg";
44
import NavMenu from "./NavMenu.svelte";
55
---
66

7-
<header class="py-6 px-3 bg-sky-500 sticky top-0 sm:static">
7+
<header class="py-6 px-3 bg-sky-500 sticky top-0 sm:static z-50">
88
<div
99
class="flex flex-row justify-between items-baseline gap-6 max-w-[130ch] mx-auto"
1010
>

website/src/components/Hero.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Content } from "../assets/copy/Hero.md";
1414
</div>
1515
<a href=`${import.meta.env.BASE_URL}/#projects`>
1616
<p
17-
class="mt-6 w-fit px-4 py-2 bg-white border-2 border-sky-500 rounded-full text-sky-500 text-lg font-bold font-serif"
17+
class="mt-6 w-fit px-4 py-2 bg-white border-2 border-sky-500 rounded-full text-sky-500! text-lg font-bold font-serif"
1818
>
1919
See what we can do
2020
</p>

website/src/components/Overview.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Content } from "../assets/copy/Overview.md";
33
---
44

55
<section id="overview" class="bg-green-200">
6-
<div class="max-w-[85ch] mx-auto py-6 px-3 prose">
6+
<div class="max-w-[85ch] mx-auto py-12 px-3 prose">
77
<Content />
88
</div>
99
</section>
Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
11
---
22
import { Content } from "../assets/copy/Process.md";
3+
const steps = ["Create a Screener", "Add Logic", "Deploy Your Tool"];
34
---
45

5-
<section id="process">
6-
<div class="max-w-[85ch] mx-auto py-6 px-3 prose">
7-
<Content />
6+
<section id="process" class="border-b-2 border-sky-500">
7+
<div class="max-w-[85ch] mx-auto py-12 px-3 flex flex-col gap-8 relative">
8+
<div class="prose max-w-[85ch]">
9+
<Content />
10+
</div>
11+
<div class="flex sm:gap-4 w-fit mx-auto">
12+
{
13+
steps.map((step) => (
14+
<div class="bg-[url(../assets/backgrounds/chevron.svg)] bg-no-repeat bg-contain sm:h-40 sm:w-40 h-25 w-25 flex justify-center items-center">
15+
<div class="w-15 sm:w-20">
16+
<p class="relative left-1 sm:left-2 text-center text-sm sm:text-xl text-white!">
17+
{step}
18+
</p>
19+
</div>
20+
</div>
21+
))
22+
}
23+
</div>
824
</div>
925
</section>

website/src/components/Projects.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Content } from "../assets/copy/Hero.md";
66
id="projects"
77
class="bg-sky-500/50 bg-[url(../assets/backgrounds/wavy.png)] bg-cover bg-blend-soft-light"
88
>
9-
<div class="max-w-[130ch] mx-auto py-6 px-3">
9+
<div class="max-w-[130ch] mx-auto py-12 px-3">
1010
<h2 class="font-bold font-serif text-2xl text-center mb-6">
1111
BDT's Projects
1212
</h2>

website/src/components/Values.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import inclusivity from "../assets/icons/inclusivity.png";
99
---
1010

1111
<section id="values">
12-
<div class="max-w-[130ch] mx-auto py-6 px-3">
12+
<div class="max-w-[130ch] mx-auto py-12 px-3">
1313
<h2 class="font-bold font-serif text-2xl text-center">Our Values</h2>
1414
<ul class="flex flex-col sm:flex-row justify-between">
1515
<li class="flex flex-col gap-6 p-3 items-center">

0 commit comments

Comments
 (0)