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 { id, type, title, ...fields } = defaultPLPContent; return (