commerce/components/pages/home-page.tsx
2023-08-24 07:44:20 +02:00

15 lines
391 B
TypeScript

import DynamicContentManager from '@/components/layout/dynamic-content-manager/dynamic-content-manager';
import type { HomePagePayload } from '@/lib/sanity/sanity.types';
export type IndexPageParams = {
data: HomePagePayload | null;
};
export default function HomePage({ data }: IndexPageParams) {
return (
<>
<DynamicContentManager content={data?.content} />
</>
);
}