commerce/components/plp/default-content.tsx
Chloe f8ef1b6350
address Hanna reviews
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2024-07-08 22:17:38 +07:00

29 lines
816 B
TypeScript

import Tag from 'components/tag';
import { getMetaobject } from 'lib/shopify';
import { Suspense } from 'react';
import Tabs, { TabsPlaceholder } from './tabs';
const DefaultContent = async () => {
const defaultPLPContent = await getMetaobject({
handle: { handle: 'default-plp-content', type: 'plp_content' }
});
if (!defaultPLPContent) return null;
const sectionIds = defaultPLPContent.sections ? JSON.parse(defaultPLPContent.sections) : [];
return (
<div className="spacy-y-3">
<Tag text="Learn More" />
<h3 className="mb-3 text-3xl font-semibold text-black-700 lg:text-4xl">
{defaultPLPContent.title}
</h3>
<Suspense fallback={<TabsPlaceholder />}>
<Tabs tabItemIds={sectionIds} />
</Suspense>
</div>
);
};
export default DefaultContent;