update computer icon and add commented out calendar page

This commit is contained in:
Brooke Christiansen 2025-06-13 17:21:26 -07:00
parent ed1c796f49
commit 75baf0fdfd
4 changed files with 44 additions and 2 deletions

BIN
public/assets/calendar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -12,6 +12,20 @@ import "../styles/globals.css";
<div class="pl-4 pr-4">
<h1 class="pb-4 pt-4 text-3xl font-semibold">What We're Working On</h1>
<div class="flex flex-row gap-8">
<!-- <div class="justify-items-center">
<img
src="/assets/calendar.png"
alt="stack of books"
width="250"
class="border pb-4"
/>
<a
href="/WhatWereWorkingOnPages/Calendar/"
class="underline decoration-solid">Calendar</a
>
</div> -->
<div class="justify-items-center">
<img
src="/assets/pihole.jpeg"
@ -44,9 +58,11 @@ import "../styles/globals.css";
class="border pb-4"
/>
<a href="/WhatWereWorkingOnPages/BookClub/" class="underline decoration-solid">Book Club</a>
<a
href="/WhatWereWorkingOnPages/BookClub/"
class="underline decoration-solid">Book Club</a
>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,26 @@
---
import Navbar from "../../components/Navbar";
import Footer from "../../components/Footer";
import Layout from "../../layouts/Layout.astro";
import "../../styles/globals.css";
import { LinkPreview } from "astro-embed";
---
<Layout>
<main class="flex min-h-screen flex-col justify-between">
<div>
<Navbar client:load activePage="Calendar" />
<div class="pl-4 pr-4">
<h1 class="pb-4 pt-4 text-3xl font-semibold">Calendar</h1>
<div class="flex flex-col gap-4">
<p class="mb-4">See what we're doing next!</p>
<LinkPreview
id="https://nextcloud.resisttechmonopolies.online/remote.php/dav"
/>
</div>
</div>
</div>
<Footer />
</main>
</Layout>