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 -->
<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>
<!-- 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"
>
<ArrowLeft className="w-4 h-4" />
MycoZine
MycroZine
</Link>
<div className="flex gap-2">
<button
@ -169,7 +169,7 @@ export default function ZineViewer({ zine }: ZineViewerProps) {
<p>
Created with{" "}
<Link href="/zine" className="underline hover:text-gray-600">
MycoZine
MycroZine
</Link>
{" by "}
<Link href="/" className="underline hover:text-gray-600">

View File

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