Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion app/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ const geistMono = Geist_Mono({
export const metadata: Metadata = {
title: "PrintCraft — Scene Composer for Physical Art",
description: "Turn separate photos of real people into one unified artwork — printed on surfaces that matter.",
metadataBase: new URL("https://printcraft.app"),
// Where the site ACTUALLY serves. printcraft.app does not serve this app, so
// the generated og:image resolved to https://printcraft.app/opengraph-image
// and 404'd — the preview was advertised and discarded by every scraper.
metadataBase: new URL(process.env.NEXT_PUBLIC_SITE_URL || "https://printcraft.orangecat.ch"),
openGraph: {
title: "PrintCraft — Scene Composer for Physical Art",
description: "Turn separate photos of real people into one unified artwork — printed on surfaces that matter.",
Expand Down
5 changes: 4 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ const geistMono = Geist_Mono({
export const metadata: Metadata = {
title: "PrintCraft — Scene Composer for Physical Art",
description: "Turn separate photos of real people into one unified artwork — printed on surfaces that matter.",
metadataBase: new URL("https://printcraft.app"),
// Kept in step with app/src/app/layout.tsx, which is the tree CI builds.
// printcraft.app does not serve this app, so the generated og:image resolved
// to a 404 and every social scraper discarded the preview.
metadataBase: new URL(process.env.NEXT_PUBLIC_SITE_URL || "https://printcraft.orangecat.ch"),
openGraph: {
title: "PrintCraft — Scene Composer for Physical Art",
description: "Turn separate photos of real people into one unified artwork — printed on surfaces that matter.",
Expand Down
Loading