import { createClient } from 'next-sanity';

const client = createClient({
  projectId: 'raco1hnv',
  dataset: 'production',
  useCdn: true, // `false` if you want to ensure fresh data
  apiVersion: '2023-03-20',
});

export default client;
