fix: rename MycoZine to MycroZine across zine pages

Updated all branding references from MycoZine to MycroZine for
consistency with the mycro-zine project naming convention.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2025-12-21 01:30:26 -05:00
parent fa7cd1b9a2
commit 12a147fd61
3 changed files with 8 additions and 8 deletions

View File

@ -264,7 +264,7 @@ async function createStyledPlaceholder(
<!-- Generation notice --> <!-- Generation notice -->
<rect x="150" y="1050" width="525" height="100" fill="${s.accent}" opacity="0.1" rx="10"/> <rect x="150" y="1050" width="525" height="100" fill="${s.accent}" opacity="0.1" rx="10"/>
<text x="412" y="1090" text-anchor="middle" class="body" font-size="18" fill="${s.fg}">MycoZine - AI Generated</text> <text x="412" y="1090" text-anchor="middle" class="body" font-size="18" fill="${s.fg}">MycroZine - AI Generated</text>
<text x="412" y="1120" text-anchor="middle" class="body" font-size="14" fill="${s.fg}" opacity="0.7">Styled placeholder - image gen pending</text> <text x="412" y="1120" text-anchor="middle" class="body" font-size="14" fill="${s.fg}" opacity="0.7">Styled placeholder - image gen pending</text>
<!-- Corner decorations --> <!-- Corner decorations -->

View File

@ -56,7 +56,7 @@ export default function ZineViewer({ zine }: ZineViewerProps) {
className="text-gray-600 hover:text-black punk-text text-sm flex items-center gap-1" className="text-gray-600 hover:text-black punk-text text-sm flex items-center gap-1"
> >
<ArrowLeft className="w-4 h-4" /> <ArrowLeft className="w-4 h-4" />
MycoZine MycroZine
</Link> </Link>
<div className="flex gap-2"> <div className="flex gap-2">
<button <button
@ -169,7 +169,7 @@ export default function ZineViewer({ zine }: ZineViewerProps) {
<p> <p>
Created with{" "} Created with{" "}
<Link href="/zine" className="underline hover:text-gray-600"> <Link href="/zine" className="underline hover:text-gray-600">
MycoZine MycroZine
</Link> </Link>
{" by "} {" by "}
<Link href="/" className="underline hover:text-gray-600"> <Link href="/" className="underline hover:text-gray-600">

View File

@ -25,22 +25,22 @@ export async function generateMetadata({ params }: PageProps): Promise<Metadata>
if (!zine) { if (!zine) {
return { return {
title: "Zine Not Found - MycoZine", title: "Zine Not Found - MycroZine",
}; };
} }
return { return {
title: `${zine.topic} - MycoZine`, title: `${zine.topic} - MycroZine`,
description: `An 8-page mini-zine about ${zine.topic}. Created with MycoZine by MycoFi.`, description: `An 8-page mini-zine about ${zine.topic}. Created with MycroZine by MycoFi.`,
openGraph: { openGraph: {
title: `${zine.topic} - MycoZine`, title: `${zine.topic} - MycroZine`,
description: `An 8-page mini-zine about ${zine.topic}`, description: `An 8-page mini-zine about ${zine.topic}`,
type: "article", type: "article",
images: zine.pageUrls?.[0] ? [{ url: zine.pageUrls[0] }] : [], images: zine.pageUrls?.[0] ? [{ url: zine.pageUrls[0] }] : [],
}, },
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image",
title: `${zine.topic} - MycoZine`, title: `${zine.topic} - MycroZine`,
description: `An 8-page mini-zine about ${zine.topic}`, description: `An 8-page mini-zine about ${zine.topic}`,
}, },
}; };