Skip to content

Commit 674771f

Browse files
committed
make adjustments to page and sections to accomodate aditions and removals
1 parent 6550228 commit 674771f

File tree

5 files changed

+60
-45
lines changed

5 files changed

+60
-45
lines changed

website/src/assets/backgrounds/bubbles.svg

Lines changed: 47 additions & 26 deletions
Loading

website/src/components/Overview.astro

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
import { Content } from "../assets/copy/Overview.md";
33
---
44

5-
<section id="overview" class="bg-bdt-green">
6-
<div class="max-w-[85ch] mx-auto py-12 px-3 prose">
7-
<Content />
8-
</div>
9-
</section>
5+
<div
6+
class="md:bg-[url(../assets/backgrounds/bubbles.svg)] bg-center md:mg-size-[150vh] lg:bg-cover bg-no-repeat"
7+
>
8+
<section id="overview">
9+
<div class="max-w-[85ch] mx-auto py-12 px-3 prose">
10+
<Content />
11+
</div>
12+
</section>
13+
</div>

website/src/components/Process.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Content } from "../assets/copy/Process.md";
33
const steps = ["Create a Screener", "Add Logic", "Deploy Your Tool"];
44
---
55

6-
<section id="process" class="border-b-2 border-bdt-blue">
6+
<section id="process">
77
<div class="max-w-[85ch] mx-auto py-12 px-3 flex flex-col gap-8 relative">
88
<div class="prose max-w-[85ch]">
99
<Content />

website/src/data/navLinks.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ export default [
77
title: "What We Do",
88
path: "/#overview",
99
},
10-
{
11-
title: "Values",
12-
path: "/#values",
13-
},
1410
{
1511
title: "Projects",
1612
path: "/#projects",

website/src/pages/index.astro

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,13 @@ import Hero from "../components/Hero.astro";
44
import Overview from "../components/Overview.astro";
55
import Projects from "../components/Projects.astro";
66
import Contact from "../components/Contact.astro";
7-
import Process from "../components/Process.astro";
8-
import Values from "../components/Values.astro";
7+
import Volunteer from "../components/Volunteer.astro";
98
---
109

1110
<Layout>
1211
<Hero />
13-
<div
14-
class="md:bg-[url(../assets/backgrounds/bubbles.svg)] bg-center md:mg-size-[150vh] lg:bg-cover bg-no-repeat"
15-
>
16-
<Overview />
17-
<Process />
18-
<Values />
19-
</div>
12+
<Overview />
2013
<Projects />
14+
<Volunteer />
2115
<Contact />
2216
</Layout>

0 commit comments

Comments
 (0)