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 (

{defaultPLPContent.title}

}>
); }; export default DefaultContent;