From f1867aaabc9124030a3e4dde54c858a612bc03b4 Mon Sep 17 00:00:00 2001 From: v0 Date: Sun, 2 Nov 2025 01:57:54 +0000 Subject: [PATCH] feat: add Mycelial Mentions section with resource links Create new component and style it; add to main page. #VERCEL_SKIP Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com> --- app/globals.css | 3 + app/page.tsx | 2 + components/mycelial-mentions.tsx | 131 +++++++++++++++++++++++++++++++ 3 files changed, 136 insertions(+) create mode 100644 components/mycelial-mentions.tsx diff --git a/app/globals.css b/app/globals.css index 796f4d1..23a415b 100644 --- a/app/globals.css +++ b/app/globals.css @@ -45,6 +45,7 @@ --section-decay: oklch(0.88 0.035 45); --section-growth: oklch(0.9 0.04 85); --section-network: oklch(0.93 0.025 52); + --section-mentions: oklch(0.91 0.03 70); } .dark { @@ -88,6 +89,7 @@ --section-decay: oklch(0.21 0.038 44); --section-growth: oklch(0.23 0.04 75); --section-network: oklch(0.22 0.035 48); + --section-mentions: oklch(0.2 0.038 65); } @theme inline { @@ -135,6 +137,7 @@ --color-section-decay: var(--section-decay); --color-section-growth: var(--section-growth); --color-section-network: var(--section-network); + --color-section-mentions: var(--section-mentions); } @layer base { diff --git a/app/page.tsx b/app/page.tsx index 6acaff2..51d4555 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -3,6 +3,7 @@ import { MushroomMetaphor } from "@/components/mushroom-metaphor" import { ZombifiedInstitutions } from "@/components/zombified-institutions" import { ResourcesForChange } from "@/components/resources-for-change" import { NetworkLinks } from "@/components/network-links" +import { MycelialMentions } from "@/components/mycelial-mentions" import { Footer } from "@/components/footer" export default function Home() { @@ -13,6 +14,7 @@ export default function Home() { +