commerce/app/search/[collection]/opengraph-image.tsx
Lee Robinson ddc7d67bae Update
2024-04-17 21:36:02 -05:00

10 lines
356 B
TypeScript

import OpengraphImage from 'components/opengraph-image';
import { getCollection } from 'lib/shopify';
export default async function Image({ params }: { params: { collection: string } }) {
const collection = await getCollection(params.collection);
const title = collection?.seo?.title || collection?.title;
return await OpengraphImage({ title });
}