diff --git a/app/layout.tsx b/app/layout.tsx index b2e7b5c..c0d838a 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -18,7 +18,11 @@ export const metadata: Metadata = { "A reboot of the Commons Stack, merging technology with mycelial principles for regenerative systems. Growing from beneath the surface.", metadataBase: new URL("https://mycostack.xyz"), icons: { - icon: "data:image/svg+xml,", + icon: [ + { url: "/favicon.ico", sizes: "any" }, + { url: "/favicon-32x32.png", sizes: "32x32", type: "image/png" }, + ], + apple: "/apple-touch-icon.png", }, openGraph: { title: "MycoStack — Technology-Augmented Commons", diff --git a/components/hero-section.tsx b/components/hero-section.tsx index bf1db31..b57fbf6 100644 --- a/components/hero-section.tsx +++ b/components/hero-section.tsx @@ -3,6 +3,7 @@ import { useSectionReveal } from "@/hooks/use-section-reveal" import { ChevronDown } from "lucide-react" import { useState, useEffect } from "react" +import Image from "next/image" const TITLE = "MycoStack" @@ -70,6 +71,18 @@ export function HeroSection() { className="relative min-h-[110vh] flex flex-col items-center justify-center px-6 noise-overlay" >