Skip to content

Commit c42e919

Browse files
committed
fix thumbnail image
1 parent 2a894e5 commit c42e919

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<a href="https://app.vercel.pub">
2-
<img alt="Platforms Starter Kit" src="/app/opengraph-image.png">
2+
<img alt="Platforms Starter Kit" src="/app/thumbnail.png">
33
<h1 align="center">Platforms Starter Kit</h1>
44
</a>
55

app/layout.tsx

+21-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,29 @@ import { Providers } from "./providers";
55
import { Metadata } from "next";
66
import clsx from "clsx";
77

8+
const title =
9+
"Platforms Starter Kit – The all-in-one starter kit for building multi-tenant applications.";
10+
const description =
11+
"The Platforms Starter Kit is a full-stack Next.js app with multi-tenancy and custom domain support. Built with Next.js App Router, Vercel Postgres and the Vercel Domains API.";
12+
const image = "https://vercel.pub/thumbnail.png";
13+
814
export const metadata: Metadata = {
9-
title: "Platforms Starter Kit",
10-
description:
11-
"Create a fullstack application with multi-tenancy and custom domains support using Next.js, Prisma, and PostgreSQL",
15+
title,
16+
description,
1217
icons: ["https://vercel.pub/favicon.ico"],
18+
openGraph: {
19+
title,
20+
description,
21+
images: [image],
22+
},
23+
twitter: {
24+
card: "summary_large_image",
25+
title,
26+
description,
27+
images: [image],
28+
creator: "@vercel",
29+
},
30+
metadataBase: new URL("https://vercel.pub"),
1331
};
1432

1533
export default function RootLayout({

app/opengraph-image.png

-68.3 KB
Binary file not shown.

public/thumbnail.png

34.8 KB
Loading

0 commit comments

Comments
 (0)