making UI work

This commit is contained in:
Brooke Christiansen 2025-05-01 19:22:40 -07:00
parent e4a6dde7ff
commit 60844a118f
4 changed files with 72 additions and 35 deletions

View File

@ -11,21 +11,21 @@ export default function Navbar() {
</div> </div>
<strong className={cn("sm:text-1xl flex gap-4 md:text-4xl")}> <strong className={cn("sm:text-1xl flex gap-4 md:text-4xl")}>
<a <a
href="/src/pages/GetInvolved.astro" href="/getInvolved/"
className={cn("text-blue-500")} className={cn("text-blue-500")}
> >
Get Involved Get Involved
</a> </a>
{/* <Separator orientation="vertical" className="w-5" /> */} {/* <Separator orientation="vertical" className="w-5" /> */}
<a <a
href="/src/pages/PointsOfUnity.astro" href="/pointsOfUnity/"
className={cn("text-green-500")} className={cn("text-green-500")}
> >
Points of Unity Points of Unity
</a> </a>
{/* <Separator orientation="vertical" className="w-5" /> */} {/* <Separator orientation="vertical" className="w-5" /> */}
<a <a
href="/src/pages/WhatWereWorkingOn.astro" href="/whatWereWorkingOn/"
className={cn("text-red-500")} className={cn("text-red-500")}
> >
What We're Working On What We're Working On

View File

@ -1,17 +1,18 @@
--- ---
import Footer from "@/components/Footer"; import Navbar from "../components/Navbar";
import Navbar from "@/components/Navbar"; import Footer from "../components/Footer";
import Layout from "@/layouts/Layout.astro"; import Layout from "../layouts/Layout.astro";
import "../styles/globals.css";
--- ---
<Layout> <Layout>
<main class="flex min-h-screen flex-col justify-between"> <main class="flex min-h-screen flex-col justify-between">
<div> <div>
<Navbar /> <Navbar />
<div class="pl-4 pr-4">
<div class="pl-4">get involved!</div> <h1>Get Involved</h1>
</div>
</div> </div>
<Footer /> <Footer />
</main> </main>
</Layout> </Layout>

View File

@ -1,24 +1,43 @@
<h1>Points of Unity</h1> ---
<p> import Navbar from "../components/Navbar";
We situate ourselves in our context - as Seattle residents and as users and import Footer from "../components/Footer";
creators of the technologies we aim to resist. We are seeing long-spanning import Layout from "../layouts/Layout.astro";
rise of fascism within all levels of governance, from Seattle city council to import "../styles/globals.css";
national governments here and abroad. In parallel is the increasing power of ---
tech companies over our lives through surveillance and the provisioning of
everyday needs, from employment to how we get our internet utilities in the <Layout>
first place. There are rising income disparities across the nation, but also <main class="flex min-h-screen flex-col justify-between">
more specifically across everyone who can be considered a "tech worker": from <div>
a CEO to a software engineer to a contractor to a child slave mining cobalt in <Navbar />
the Congo. Technology contributes to gentrification both through the <div class="pl-4 pr-4">
tech-enabled financialization of real estate as well as the gentrifying waves <h1>Points of Unity</h1>
of tech workers moving into cities. Increased technical sophisication of <p>
militaries and carceral systems have created the first "AI genocide" in We situate ourselves in our context - as Seattle residents and as
Palestine; increased militarization of borders such as the US-Mexico and the users and creators of the technologies we aim to resist. We are seeing
surveillance of migrants; increased police brutality worldwide, all long-spanning rise of fascism within all levels of governance, from
disparately impacting people of the global majority. All of these crises are Seattle city council to national governments here and abroad. In
enabled and worsened by technology companies. As tech workers of various kinds parallel is the increasing power of tech companies over our lives
living in the imperial core, on stolen Coast Salish land covered by the broken through surveillance and the provisioning of everyday needs, from
Treaty of Point Elliot of 1855, we understand how our labor is contributing - employment to how we get our internet utilities in the first place.
directly or indirectly - to these oppressions, and seek to use our skills There are rising income disparities across the nation, but also more
towards more liberatory ends. specifically across everyone who can be considered a "tech worker":
</p> from a CEO to a software engineer to a contractor to a child slave
mining cobalt in the Congo. Technology contributes to gentrification
both through the tech-enabled financialization of real estate as well
as the gentrifying waves of tech workers moving into cities. Increased
technical sophisication of militaries and carceral systems have
created the first "AI genocide" in Palestine; increased militarization
of borders such as the US-Mexico and the surveillance of migrants;
increased police brutality worldwide, all disparately impacting people
of the global majority. All of these crises are enabled and worsened
by technology companies. As tech workers of various kinds living in
the imperial core, on stolen Coast Salish land covered by the broken
Treaty of Point Elliot of 1855, we understand how our labor is
contributing - directly or indirectly - to these oppressions, and seek
to use our skills towards more liberatory ends.
</p>
</div>
</div>
<Footer />
</main>
</Layout>

View File

@ -1,2 +1,19 @@
<h1>What We're Working On</h1> ---
<p>Pihole Workshop</p> import Navbar from "../components/Navbar";
import Footer from "../components/Footer";
import Layout from "../layouts/Layout.astro";
import "../styles/globals.css";
---
<Layout>
<main class="flex min-h-screen flex-col justify-between">
<div>
<Navbar />
<div class="pl-4 pr-4">
<h1>What We're Working On</h1>
<p>Pihole Workshop</p>
</div>
</div>
<Footer />
</main>
</Layout>