'use client'; import React from 'react'; import { useCollections } from '@/hooks/use-shopify-collections'; import CollectionCard from './collection-card'; const Collections: React.FC = () => { const { collections, loading, error } = useCollections(20); if (loading) { return (
We couldn't load any collections right now. Please try again later.
Check back later or configure your Shopify store connection.