mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
|
import OpengraphImage from 'components/opengraph-image';
|
||
|
import { getPage } from 'lib/shopify';
|
||
|
|
||
|
export default async function Image({ params }: { params: { page: string } }) {
|
||
|
const page = await getPage(params.page);
|
||
|
const title = page.seo?.title || page.title;
|
||
|
|
||
|
return await OpengraphImage({ title });
|
||
|
}
|