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" >
+ {/* Logo */} +
+ MycoStack logo +
+ {/* Title with staggered emergence */}

{TITLE.split("").map((letter, i) => ( diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..499492e Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000..410b8fe Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000..3581cb6 Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..4012786 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/icon-192x192.png b/public/icon-192x192.png new file mode 100644 index 0000000..2bf7a61 Binary files /dev/null and b/public/icon-192x192.png differ diff --git a/public/mycostack-logo.png b/public/mycostack-logo.png new file mode 100644 index 0000000..83d5b6d Binary files /dev/null and b/public/mycostack-logo.png differ