update README and get rid of astro embed

This commit is contained in:
Brooke Christiansen
2025-06-16 21:02:43 -07:00
parent ff14276559
commit 45fce5fe76
2 changed files with 2 additions and 7 deletions

View File

@ -44,7 +44,7 @@ npx astro dev
# To release a new version # To release a new version
## Build in the docker image ## Build in the docker image (make sure you have Docker installed!)
``` bash ``` bash
version=<specify-version> version=<specify-version>

View File

@ -3,7 +3,6 @@ import Navbar from "../../components/Navbar";
import Footer from "../../components/Footer"; import Footer from "../../components/Footer";
import Layout from "../../layouts/Layout.astro"; import Layout from "../../layouts/Layout.astro";
import "../../styles/globals.css"; import "../../styles/globals.css";
import { LinkPreview } from "astro-embed";
--- ---
<Layout> <Layout>
@ -14,10 +13,6 @@ import { LinkPreview } from "astro-embed";
<h1 class="pb-4 pt-4 text-3xl font-semibold">Calendar</h1> <h1 class="pb-4 pt-4 text-3xl font-semibold">Calendar</h1>
<div class="flex flex-col gap-4"> <div class="flex flex-col gap-4">
<p class="mb-4">See what we're doing next!</p> <p class="mb-4">See what we're doing next!</p>
<LinkPreview
id="https://nextcloud.resisttechmonopolies.online/remote.php/dav"
/>
</div> </div>
</div> </div>
</div> </div>