mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-01 16:44:24 +00:00
Compare commits
2 Commits
@shadcn/re
...
claude/fix
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2139f1ac6c | ||
|
|
85cceaa7a9 |
@@ -20,7 +20,7 @@ export const metadata: Metadata = {
|
|||||||
default: siteConfig.name,
|
default: siteConfig.name,
|
||||||
template: `%s - ${siteConfig.name}`,
|
template: `%s - ${siteConfig.name}`,
|
||||||
},
|
},
|
||||||
metadataBase: new URL(process.env.NEXT_PUBLIC_APP_URL!),
|
metadataBase: new URL(siteConfig.url),
|
||||||
description: siteConfig.description,
|
description: siteConfig.description,
|
||||||
keywords: ["Next.js", "React", "Tailwind CSS", "Components", "shadcn"],
|
keywords: ["Next.js", "React", "Tailwind CSS", "Components", "shadcn"],
|
||||||
authors: [
|
authors: [
|
||||||
@@ -33,13 +33,13 @@ export const metadata: Metadata = {
|
|||||||
openGraph: {
|
openGraph: {
|
||||||
type: "website",
|
type: "website",
|
||||||
locale: "en_US",
|
locale: "en_US",
|
||||||
url: process.env.NEXT_PUBLIC_APP_URL!,
|
url: siteConfig.url,
|
||||||
title: siteConfig.name,
|
title: siteConfig.name,
|
||||||
description: siteConfig.description,
|
description: siteConfig.description,
|
||||||
siteName: siteConfig.name,
|
siteName: siteConfig.name,
|
||||||
images: [
|
images: [
|
||||||
{
|
{
|
||||||
url: `${process.env.NEXT_PUBLIC_APP_URL}/opengraph-image.png`,
|
url: siteConfig.ogImage,
|
||||||
width: 1200,
|
width: 1200,
|
||||||
height: 630,
|
height: 630,
|
||||||
alt: siteConfig.name,
|
alt: siteConfig.name,
|
||||||
@@ -50,7 +50,7 @@ export const metadata: Metadata = {
|
|||||||
card: "summary_large_image",
|
card: "summary_large_image",
|
||||||
title: siteConfig.name,
|
title: siteConfig.name,
|
||||||
description: siteConfig.description,
|
description: siteConfig.description,
|
||||||
images: [`${process.env.NEXT_PUBLIC_APP_URL}/opengraph-image.png`],
|
images: [siteConfig.ogImage],
|
||||||
creator: "@shadcn",
|
creator: "@shadcn",
|
||||||
},
|
},
|
||||||
icons: {
|
icons: {
|
||||||
|
|||||||
Reference in New Issue
Block a user