making UI work
This commit is contained in:
parent
e4a6dde7ff
commit
60844a118f
@ -11,21 +11,21 @@ export default function Navbar() {
|
||||
</div>
|
||||
<strong className={cn("sm:text-1xl flex gap-4 md:text-4xl")}>
|
||||
<a
|
||||
href="/src/pages/GetInvolved.astro"
|
||||
href="/getInvolved/"
|
||||
className={cn("text-blue-500")}
|
||||
>
|
||||
Get Involved
|
||||
</a>
|
||||
{/* <Separator orientation="vertical" className="w-5" /> */}
|
||||
<a
|
||||
href="/src/pages/PointsOfUnity.astro"
|
||||
href="/pointsOfUnity/"
|
||||
className={cn("text-green-500")}
|
||||
>
|
||||
Points of Unity
|
||||
</a>
|
||||
{/* <Separator orientation="vertical" className="w-5" /> */}
|
||||
<a
|
||||
href="/src/pages/WhatWereWorkingOn.astro"
|
||||
href="/whatWereWorkingOn/"
|
||||
className={cn("text-red-500")}
|
||||
>
|
||||
What We're Working On
|
||||
|
@ -1,17 +1,18 @@
|
||||
---
|
||||
import Footer from "@/components/Footer";
|
||||
import Navbar from "@/components/Navbar";
|
||||
import Layout from "@/layouts/Layout.astro";
|
||||
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">get involved!</div>
|
||||
<div class="pl-4 pr-4">
|
||||
<h1>Get Involved</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Footer />
|
||||
</main>
|
||||
</Layout>
|
||||
|
@ -1,24 +1,43 @@
|
||||
<h1>Points of Unity</h1>
|
||||
<p>
|
||||
We situate ourselves in our context - as Seattle residents and as users and
|
||||
creators of the technologies we aim to resist. We are seeing long-spanning
|
||||
rise of fascism within all levels of governance, from Seattle city council to
|
||||
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
|
||||
first place. There are rising income disparities across the nation, but also
|
||||
more specifically across everyone who can be considered a "tech worker": 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>
|
||||
---
|
||||
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>Points of Unity</h1>
|
||||
<p>
|
||||
We situate ourselves in our context - as Seattle residents and as
|
||||
users and creators of the technologies we aim to resist. We are seeing
|
||||
long-spanning rise of fascism within all levels of governance, from
|
||||
Seattle city council to 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 first place.
|
||||
There are rising income disparities across the nation, but also more
|
||||
specifically across everyone who can be considered a "tech worker":
|
||||
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>
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user